We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e5bf092 commit 73e7c8aCopy full SHA for 73e7c8a
zkstack_cli/crates/zkstack/src/commands/chain/gateway/gateway_common.rs
@@ -175,7 +175,7 @@ async fn get_batch_execution_status(
175
let zk_chain_address = sl_bridgehub.get_zk_chain(U256::from(l2_chain_id)).await?;
176
let zk_chain = ZkChainAbi::new(zk_chain_address, provider);
177
let total_committed = zk_chain.get_total_batches_committed().await?;
178
- let total_executed = zk_chain.get_total_batches_committed().await?;
+ let total_executed = zk_chain.get_total_batches_executed().await?;
179
180
Ok((total_committed, total_executed))
181
}
0 commit comments