Skip to content

Commit

Permalink
Fix era node argument
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielSchiavini committed Jul 31, 2024
1 parent d5c2f27 commit 67d1548
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
echo "Installing zkvyper and era_test_node"
# Install zkvyper and era_test_node from binary repositories
curl --location https://github.com/matter-labs/zkvyper-bin/raw/main/linux-amd64/zkvyper-linux-amd64-musl-v1.5.3 \
curl --location https://raw.githubusercontent.com/matter-labs/zkvyper-bin/v1.5.3/linux-amd64/zkvyper-linux-amd64-musl-v1.5.3 \
--silent --output /usr/local/bin/zkvyper && \
chmod +x /usr/local/bin/zkvyper && \
zkvyper --version
Expand Down
2 changes: 1 addition & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def zksync_sepolia_fork(account):
boa_zksync.set_zksync_fork(
fork_url,
block_identifier=1689570,
node_args=("--show-calls", "all", "--show-outputs"),
node_args=("--show-calls", "all", "--show-outputs", "true"),
)
boa.env.add_account(account, force_eoa=True)
yield boa.env
Expand Down

0 comments on commit 67d1548

Please sign in to comment.