From bc90081332bfc09b5a293d94d8d83e61ea6c37d8 Mon Sep 17 00:00:00 2001 From: Andrew Fitzgerald Date: Thu, 3 Oct 2024 08:48:35 -0500 Subject: [PATCH] Ok(()) --- ledger/src/blockstore_processor.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ledger/src/blockstore_processor.rs b/ledger/src/blockstore_processor.rs index acc050e48c6403..04d4e6f9fcb0a9 100644 --- a/ledger/src/blockstore_processor.rs +++ b/ledger/src/blockstore_processor.rs @@ -754,7 +754,7 @@ fn queue_batches_with_lock_retry( // Retry the lock let lock_results = bank.try_lock_accounts(&transactions); match first_err(&lock_results) { - Ok(_) => { + Ok(()) => { batches.push(LockedTransactionsWithIndexes { lock_results, transactions,