diff --git a/zk_toolbox/crates/zk_inception/src/commands/ecosystem/init.rs b/zk_toolbox/crates/zk_inception/src/commands/ecosystem/init.rs index 869ed48308d0..1132c4ae8461 100644 --- a/zk_toolbox/crates/zk_inception/src/commands/ecosystem/init.rs +++ b/zk_toolbox/crates/zk_inception/src/commands/ecosystem/init.rs @@ -281,8 +281,12 @@ 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(); + + 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())?;