Skip to content

Commit

Permalink
Avoid test runner breaking in TxPoolTest (#7460)
Browse files Browse the repository at this point in the history
  • Loading branch information
ak88 authored Sep 18, 2024
1 parent 55aa224 commit 15ded8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Nethermind/Nethermind.TxPool/TxPool.cs
Original file line number Diff line number Diff line change
Expand Up @@ -774,7 +774,7 @@ private void TimerOnElapsed(object? sender, EventArgs e)

internal void ResetAddress(Address address)
{
ArrayPoolList<AddressAsKey> arrayPoolList = new(1);
using ArrayPoolList<AddressAsKey> arrayPoolList = new(1);
arrayPoolList.Add(address);
_accountCache.RemoveAccounts(arrayPoolList);
}
Expand Down

0 comments on commit 15ded8a

Please sign in to comment.