Skip to content

Commit 9274f28

Browse files
committed
core/txpool/blobpool: revert part of ethereum#30437, return all reinject-addresses
1 parent bb9897f commit 9274f28

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

core/txpool/blobpool/blobpool.go

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -949,9 +949,7 @@ func (p *BlobPool) reorg(oldHead, newHead *types.Header) (map[common.Address][]*
949949
lost = append(lost, tx)
950950
}
951951
}
952-
if len(lost) > 0 {
953-
reinject[addr] = lost
954-
}
952+
reinject[addr] = lost
955953

956954
// Update the set that was already reincluded to track the blocks in limbo
957955
for _, tx := range types.TxDifference(included[addr], discarded[addr]) {

0 commit comments

Comments
 (0)