Skip to content

nonce unstuck fix #27

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 5, 2025
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
15 changes: 11 additions & 4 deletions executors/src/eoa/worker/confirm.rs
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ impl<C: Chain> EoaExecutorWorker<C> {
nonce = expected_nonce,
"Successfully sent gas bumped transaction"
);
return Ok(true);
Ok(true)
}
Err(e) => {
tracing::warn!(
Expand All @@ -351,11 +351,18 @@ impl<C: Chain> EoaExecutorWorker<C> {
"Failed to send gas bumped transaction"
);
// Don't fail the worker, just log the error
return Ok(false);
Ok(false)
}
}
}
} else {
tracing::debug!(
nonce = expected_nonce,
"Successfully retrieved all transactions for this nonce, but failed to find newest transaction for gas bump, sending noop"
);

Ok(false)
let noop_tx = self.send_noop_transaction(expected_nonce).await?;
self.store.process_noop_transactions(&[noop_tx]).await?;
Ok(true)
}
}
}