chore: provide mined transactions in order (#6700)

This commit is contained in:
Matthias Seitz
2024-02-20 20:49:05 +01:00
committed by GitHub
parent 35e1f122a9
commit 2f3c3089bc

View File

@ -347,7 +347,7 @@ pub async fn maintain_transaction_pool<Client, P, St, Tasks>(
pending_block_blob_fee, pending_block_blob_fee,
changed_accounts, changed_accounts,
// all transactions mined in the new chain need to be removed from the pool // all transactions mined in the new chain need to be removed from the pool
mined_transactions: new_mined_transactions.into_iter().collect(), mined_transactions: new_blocks.transaction_hashes().collect(),
}; };
pool.on_canonical_state_change(update); pool.on_canonical_state_change(update);