We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0de8d9b commit 18de39aCopy full SHA for 18de39a
batcher/aligned-batcher/src/lib.rs
@@ -547,7 +547,7 @@ impl Batcher {
547
548
if expected_nonce < msg_nonce {
549
std::mem::drop(batch_state_lock);
550
- warn!("Invalid nonce for address {addr}, had nonce {expected_nonce:?} < {msg_nonce:?}");
+ warn!("Invalid nonce for address {addr}, expected nonce: {expected_nonce:?}, received nonce: {msg_nonce:?}");
551
send_message(ws_conn_sink.clone(), ResponseMessage::InvalidNonce).await;
552
return Ok(());
553
}
0 commit comments