eth/gasprice: ensure cache purging goroutine terminates with subscription (#31025)

pull/31010/head
jwasinger 2 weeks ago committed by GitHub
parent 04a336aee8
commit 8dfad579e9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 25
      eth/gasprice/gasprice.go

@ -120,16 +120,23 @@ func NewOracle(backend OracleBackend, params Config, startPrice *big.Int) *Oracl
cache := lru.NewCache[cacheKey, processedFees](2048)
headEvent := make(chan core.ChainHeadEvent, 1)
backend.SubscribeChainHeadEvent(headEvent)
go func() {
var lastHead common.Hash
for ev := range headEvent {
if ev.Header.ParentHash != lastHead {
cache.Purge()
sub := backend.SubscribeChainHeadEvent(headEvent)
if sub != nil { // the gasprice testBackend doesn't support subscribing to head events
go func() {
var lastHead common.Hash
for {
select {
case ev := <-headEvent:
if ev.Header.ParentHash != lastHead {
cache.Purge()
}
lastHead = ev.Header.Hash()
case <-sub.Err():
return
}
}
lastHead = ev.Header.Hash()
}
}()
}()
}
return &Oracle{
backend: backend,

Loading…
Cancel
Save