File tree Expand file tree Collapse file tree 3 files changed +2
-5
lines changed Expand file tree Collapse file tree 3 files changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -577,7 +577,6 @@ impl AtomicEoaExecutorStore {
577
577
results : Vec < SubmissionResult > ,
578
578
webhook_queue : Arc < twmq:: Queue < WebhookJobHandler > > ,
579
579
) -> Result < BorrowedProcessingReport , TransactionStoreError > {
580
- dbg ! ( "getting here" , & results) ;
581
580
self . execute_with_watch_and_retry ( & ProcessBorrowedTransactions {
582
581
results,
583
582
keys : & self . keys ,
Original file line number Diff line number Diff line change @@ -462,7 +462,7 @@ impl SafeRedisTransaction for CleanAndGetRecycledNonces<'_> {
462
462
chain_id : self . keys . chain_id ,
463
463
} ) ;
464
464
} ;
465
- count - 1
465
+ count. saturating_sub ( 1 )
466
466
}
467
467
} ;
468
468
@@ -475,7 +475,7 @@ impl SafeRedisTransaction for CleanAndGetRecycledNonces<'_> {
475
475
. filter ( |nonce| * nonce < highest_submitted_nonce)
476
476
. collect ( ) ;
477
477
478
- return Ok ( ( highest_submitted_nonce, recycled_nonces) ) ;
478
+ Ok ( ( highest_submitted_nonce, recycled_nonces) )
479
479
}
480
480
481
481
fn operation (
Original file line number Diff line number Diff line change @@ -398,8 +398,6 @@ impl<C: Chain> EoaExecutorWorker<C> {
398
398
} )
399
399
. collect ( ) ;
400
400
401
- dbg ! ( & submission_results) ;
402
-
403
401
// TODO: Implement post-processing analysis for balance threshold updates and nonce resets
404
402
// Currently we lose the granular error handling that was in the individual atomic operations.
405
403
// Consider:
You can’t perform that action at this time.
0 commit comments