We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c77b08 commit 0e42b36Copy full SHA for 0e42b36
zkstack_cli/crates/zkstack/src/commands/chain/gateway/migrate_to_gateway_calldata.rs
@@ -130,8 +130,9 @@ pub(crate) async fn get_migrate_to_gateway_calls(
130
let priority_queue_size = l1_zk_chain.get_priority_queue_size().await?;
131
if !priority_queue_size.is_zero() && !params.only_set_da_validator_pair {
132
anyhow::bail!(
133
- "{} priority queue is not empty! Please empty it before migrating to Gateway",
134
- params.l2_chain_id
+ "{} priority queue has {} items! Please empty it before migrating to Gateway",
+ params.l2_chain_id,
135
+ priority_queue_size
136
);
137
}
138
0 commit comments