Skip to content

Commit

Permalink
fix(zk_toolbox): Use fast mode
Browse files Browse the repository at this point in the history
Signed-off-by: Danil <[email protected]>
  • Loading branch information
Deniallugo committed Jul 29, 2024
1 parent 38f61c3 commit bc9ada7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
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
8 changes: 4 additions & 4 deletions zk_toolbox/crates/zk_inception/src/commands/ecosystem/init.rs
Original file line number Diff line number Diff line change
Expand Up @@ -312,10 +312,10 @@ async fn deploy_ecosystem_inner(
.with_rpc_url(l1_rpc_url.clone())
.with_broadcast();

if config.l1_network == L1Network::Localhost {
// It's a kludge for reth, just because it doesn't behave properly with large amount of txs
forge = forge.with_slow();
}
// if config.l1_network == L1Network::Localhost {
// // It's a kludge for reth, just because it doesn't behave properly with large amount of txs
// forge = forge.with_slow();
// }

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

Expand Down

0 comments on commit bc9ada7

Please sign in to comment.