diff options
author | Péter Szilágyi <peterke@gmail.com> | 2018-09-20 20:10:04 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-20 20:10:04 +0800 |
commit | f55c26ae6d0f25b4aa6b1bd103720067d1fec9fe (patch) | |
tree | 73a82b84d96b80e162fa3851828e0c83552d8184 /light/odr.go | |
parent | d6254f827bf493c1471a806b7b8a0e9b86c8c420 (diff) | |
parent | af89093116d2a4657c79d55f61b4293753b52588 (diff) | |
download | dexon-f55c26ae6d0f25b4aa6b1bd103720067d1fec9fe.tar dexon-f55c26ae6d0f25b4aa6b1bd103720067d1fec9fe.tar.gz dexon-f55c26ae6d0f25b4aa6b1bd103720067d1fec9fe.tar.bz2 dexon-f55c26ae6d0f25b4aa6b1bd103720067d1fec9fe.tar.lz dexon-f55c26ae6d0f25b4aa6b1bd103720067d1fec9fe.tar.xz dexon-f55c26ae6d0f25b4aa6b1bd103720067d1fec9fe.tar.zst dexon-f55c26ae6d0f25b4aa6b1bd103720067d1fec9fe.zip |
Merge pull request #17719 from karalabe/update-chts
les, light, params: update light client CHTs
Diffstat (limited to 'light/odr.go')
-rw-r--r-- | light/odr.go | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/light/odr.go b/light/odr.go index 3cd8b2c04..900be0544 100644 --- a/light/odr.go +++ b/light/odr.go @@ -157,18 +157,18 @@ func (req *ChtRequest) StoreResult(db ethdb.Database) { // BloomRequest is the ODR request type for retrieving bloom filters from a CHT structure type BloomRequest struct { OdrRequest - Config *IndexerConfig - BloomTrieNum uint64 - BitIdx uint - SectionIdxList []uint64 - BloomTrieRoot common.Hash - BloomBits [][]byte - Proofs *NodeSet + Config *IndexerConfig + BloomTrieNum uint64 + BitIdx uint + SectionIndexList []uint64 + BloomTrieRoot common.Hash + BloomBits [][]byte + Proofs *NodeSet } // StoreResult stores the retrieved data in local database func (req *BloomRequest) StoreResult(db ethdb.Database) { - for i, sectionIdx := range req.SectionIdxList { + for i, sectionIdx := range req.SectionIndexList { sectionHead := rawdb.ReadCanonicalHash(db, (sectionIdx+1)*req.Config.BloomTrieSize-1) // if we don't have the canonical hash stored for this section head number, we'll still store it under // a key with a zero sectionHead. GetBloomBits will look there too if we still don't have the canonical |