Skip to content

Commit

Permalink
fix(EN): temporary produce a warning on pubdata mismatch with L1 (#758)
Browse files Browse the repository at this point in the history
  • Loading branch information
RomanBrodetski authored Dec 25, 2023
1 parent 3d211e8 commit 0a7a4da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/lib/zksync_core/src/consistency_checker/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ impl ConsistencyChecker {
batch_number.0 += 1;
}
Ok(false) => {
anyhow::bail!("Batch {} is inconsistent with L1", batch_number.0);
tracing::warn!("Batch {} is inconsistent with L1", batch_number.0);
}
Err(e) => {
tracing::warn!("Consistency checker error: {}", e);
Expand Down

0 comments on commit 0a7a4da

Please sign in to comment.