Skip to content

Commit

Permalink
Merge branch 'master' of github.com:vyperlang/vyper into pipeline-dep…
Browse files Browse the repository at this point in the history
…endencies
  • Loading branch information
DanielSchiavini committed Feb 28, 2024
2 parents 2d62a3c + 730679b commit e3c311c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/era-tester.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,8 @@ jobs:
sed -i 's/ssh:\/\/git@/https:\/\//g' .gitmodules
git submodule init
git submodule update
sudo apt install cmake ninja-build clang-13 lld-13 parallel pkg-config lld
sudo apt-get update
sudo apt-get install -y cmake ninja-build clang-13 lld-13 parallel pkg-config lld
cargo install compiler-llvm-builder
zkevm-llvm clone && zkevm-llvm build
cargo build --release
Expand Down
2 changes: 1 addition & 1 deletion vyper/semantics/analysis/module.py
Original file line number Diff line number Diff line change
Expand Up @@ -520,7 +520,7 @@ def visit_ExportsDecl(self, node):
if not isinstance(func_t, ContractFunctionT):
raise StructureException("not a function!", decl_node, item)
if not func_t.is_external:
raise StructureException("not an external function!", decl_node, item)
raise StructureException("can't export non-external functions!", decl_node, item)

self._add_exposed_function(func_t, item, relax=False)
with tag_exceptions(item): # tag with specific item
Expand Down

0 comments on commit e3c311c

Please sign in to comment.