Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions executors/src/eoa/store/atomic.rs
Original file line number Diff line number Diff line change
Expand Up @@ -418,15 +418,15 @@ impl AtomicEoaExecutorStore {
// Update cached transaction count
pipeline.set(&tx_count_key, current_chain_tx_count);

if current_chain_tx_count + 1 > optimistic_nonce {
if current_chain_tx_count > optimistic_nonce {
tracing::warn!(
current_chain_tx_count = current_chain_tx_count,
optimistic_nonce = optimistic_nonce,
"Optimistic nonce was behind fresh chain transaction count, updating to match"
);
pipeline.set(
self.optimistic_transaction_count_key_name(),
current_chain_tx_count + 1,
current_chain_tx_count,
);
}

Expand Down