core/txpool/blobpool: fix typo

This commit is contained in:
Felix Lange 2025-09-23 12:55:26 +02:00
parent 10d737b304
commit aefa3fc016

View file

@ -2237,7 +2237,7 @@ func TestSidecarConversion(t *testing.T) {
statedb.SetNonce(addrs[len(preOsakaTxs)-1], 1, tracing.NonceChangeEoACall) statedb.SetNonce(addrs[len(preOsakaTxs)-1], 1, tracing.NonceChangeEoACall)
pool.Reset(header1, block2.Header()) pool.Reset(header1, block2.Header())
// Now verify no post-Osaka transadctions are tracked by the pool. // Now verify no post-Osaka transactions are tracked by the pool.
for i, tx := range postOsakaTxs { for i, tx := range postOsakaTxs {
if pool.Get(tx.Hash()) != nil { if pool.Get(tx.Hash()) != nil {
t.Fatalf("expected txs added post-osaka to have been placed in limbo due to inclusion in a block: index %d, hash %s", i, tx.Hash()) t.Fatalf("expected txs added post-osaka to have been placed in limbo due to inclusion in a block: index %d, hash %s", i, tx.Hash())