forked from cerc-io/plugeth
gpo non-existent block checks
This commit is contained in:
parent
ac80ec59dc
commit
5d9df7348d
@ -47,14 +47,21 @@ func NewGasPriceOracle(eth *Ethereum) (self *GasPriceOracle) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (self *GasPriceOracle) processPastBlocks() {
|
func (self *GasPriceOracle) processPastBlocks() {
|
||||||
last := self.chain.CurrentBlock().NumberU64()
|
last := int64(-1)
|
||||||
first := uint64(0)
|
cblock := self.chain.CurrentBlock()
|
||||||
|
if cblock != nil {
|
||||||
|
last = int64(cblock.NumberU64())
|
||||||
|
}
|
||||||
|
first := int64(0)
|
||||||
if last > gpoProcessPastBlocks {
|
if last > gpoProcessPastBlocks {
|
||||||
first = last - gpoProcessPastBlocks
|
first = last - gpoProcessPastBlocks
|
||||||
}
|
}
|
||||||
self.firstProcessed = first
|
self.firstProcessed = uint64(first)
|
||||||
for i := first; i <= last; i++ {
|
for i := first; i <= last; i++ {
|
||||||
self.processBlock(self.chain.GetBlockByNumber(i))
|
block := self.chain.GetBlockByNumber(uint64(i))
|
||||||
|
if block != nil {
|
||||||
|
self.processBlock(block)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user