Skip to content

Commit

Permalink
Remove slow
Browse files Browse the repository at this point in the history
Signed-off-by: Danil <[email protected]>
  • Loading branch information
Deniallugo committed May 21, 2024
1 parent 6caf08d commit 4b4c2ef
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci-core-reusable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,7 @@ jobs:
ci_run ./zk_toolbox/target/release/zk_inception ecosystem init --deploy-paymaster --deploy-erc20 --deploy-ecosystem --server-db-url=postgres://postgres:notsecurepassword@postgres --server-db-name="zksync_local" --prover-db-url=postgres://postgres:notsecurepassword@postgres --prover-db-name="prover_zksync_local" --verbose
ci_run zk
ci_run zk contract build
# `sleep 60` because we need to wait until server added all the tokens
- name: Run server
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ services:
source: ./etc/reth/chaindata
target: /chaindata

command: node --dev --datadir /rethdata --http --http.addr 0.0.0.0 --http.port 8545 --dev.block-time 300ms --chain /chaindata/reth_config
command: node --dev --datadir /rethdata --http --http.addr 0.0.0.0 --http.port 8545 --chain /chaindata/reth_config
ports:
- 127.0.0.1:8545:8545

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -283,8 +283,7 @@ fn deploy_ecosystem_inner(
.script(&DEPLOY_ECOSYSTEM.script(), forge_args.clone())
.with_ffi()
.with_rpc_url(config.l1_rpc_url.clone())
.with_broadcast()
.with_slow();
.with_broadcast();

forge = fill_forge_private_key(forge, wallets_config.deployer_private_key())?;

Expand Down

0 comments on commit 4b4c2ef

Please sign in to comment.