mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-05-24 08:49:29 +00:00
core/txpool/legacypool: sync floating heap base fee in SetBaseFee
This commit is contained in:
parent
eb67d61933
commit
24db360bf3
1 changed files with 1 additions and 0 deletions
|
|
@ -689,5 +689,6 @@ func (l *pricedList) SetBaseFee(baseFee *big.Int) {
|
||||||
base.SetFromBig(baseFee)
|
base.SetFromBig(baseFee)
|
||||||
}
|
}
|
||||||
l.urgent.baseFee = base
|
l.urgent.baseFee = base
|
||||||
|
l.floating.baseFee = new(uint256.Int).Set(base)
|
||||||
l.Reheap()
|
l.Reheap()
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue