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 80b47ef commit 2066a8bCopy full SHA for 2066a8b
executors/src/eip7702_executor/send.rs
@@ -227,7 +227,10 @@ where
227
.get_delegation_contract(transactions.account().chain())
228
.await
229
.map_err(|e| Eip7702SendError::DelegationCheckFailed { inner_error: e })
230
- .map_err_fail()?;
+ .map_err_nack(
231
+ Some(Duration::from_secs(2)),
232
+ twmq::job::RequeuePosition::Last,
233
+ )?;
234
235
let transactions = transactions
236
.add_authorization_if_needed(
0 commit comments