mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-05-17 05:26:36 +00:00
core/txpool/blobpool: revert part of #30437, return all reinject-addresses
This commit is contained in:
parent
bb9897f11b
commit
9274f28210
1 changed files with 1 additions and 3 deletions
|
|
@ -949,9 +949,7 @@ func (p *BlobPool) reorg(oldHead, newHead *types.Header) (map[common.Address][]*
|
||||||
lost = append(lost, tx)
|
lost = append(lost, tx)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if len(lost) > 0 {
|
reinject[addr] = lost
|
||||||
reinject[addr] = lost
|
|
||||||
}
|
|
||||||
|
|
||||||
// Update the set that was already reincluded to track the blocks in limbo
|
// Update the set that was already reincluded to track the blocks in limbo
|
||||||
for _, tx := range types.TxDifference(included[addr], discarded[addr]) {
|
for _, tx := range types.TxDifference(included[addr], discarded[addr]) {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue