mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-17 17:33:47 +00:00
core, light: fix chain indexer bug
This commit is contained in:
parent
02aeb3d766
commit
585baccbed
1 changed files with 1 additions and 1 deletions
|
|
@ -393,7 +393,7 @@ func (self *LightChain) InsertHeaderChain(chain []*types.Header, checkFreq int)
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
i, err := self.hc.InsertHeaderChain(chain, whFunc, start)
|
i, err := self.hc.InsertHeaderChain(chain, whFunc, start)
|
||||||
go self.postChainEvents(events)
|
self.postChainEvents(events)
|
||||||
return i, err
|
return i, err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue