diff --git a/core/src/banking_stage/transaction_scheduler/prio_graph_scheduler.rs b/core/src/banking_stage/transaction_scheduler/prio_graph_scheduler.rs index 726d21284ea23e..8edebc1f80c200 100644 --- a/core/src/banking_stage/transaction_scheduler/prio_graph_scheduler.rs +++ b/core/src/banking_stage/transaction_scheduler/prio_graph_scheduler.rs @@ -378,11 +378,6 @@ impl PrioGraphScheduler { continue; } } - // Transaction must be dropped before removing, since we - // currently have ownership of the transaction, and - // therefore may have a reference to the backing-memory - // that the container expects to be free. - drop(transaction); container.remove_by_id(id); }