core/txpool/legacypool: sync floating heap base fee in SetBaseFee

This commit is contained in:
Weixie Cui 2026-04-17 20:50:43 +08:00
parent eb67d61933
commit 24db360bf3

View file

@ -689,5 +689,6 @@ func (l *pricedList) SetBaseFee(baseFee *big.Int) {
base.SetFromBig(baseFee)
}
l.urgent.baseFee = base
l.floating.baseFee = new(uint256.Int).Set(base)
l.Reheap()
}