diff options
author | Wenbiao Zheng <delweng@gmail.com> | 2018-05-29 23:48:43 +0800 |
---|---|---|
committer | Felix Lange <fjl@users.noreply.github.com> | 2018-05-29 23:48:43 +0800 |
commit | 38c7eb0f26eaa8df229d27e92f12e253313a6c8d (patch) | |
tree | 93b57c84013170b006b3cb47dd7b6341c387afcf /eth | |
parent | d51faee2402072a6af66b8f08f6334944585419d (diff) | |
download | dexon-38c7eb0f26eaa8df229d27e92f12e253313a6c8d.tar.gz dexon-38c7eb0f26eaa8df229d27e92f12e253313a6c8d.tar.zst dexon-38c7eb0f26eaa8df229d27e92f12e253313a6c8d.zip |
trie: rename TrieSync to Sync and improve hexToKeybytes (#16804)
This removes a golint warning: type name will be used as trie.TrieSync by
other packages, and that stutters; consider calling this Sync.
In hexToKeybytes len(hex) is even and (even+1)/2 == even/2, remove the +1.
Diffstat (limited to 'eth')
-rw-r--r-- | eth/downloader/statesync.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eth/downloader/statesync.go b/eth/downloader/statesync.go index 5b4b9ba1b..8d33dfec7 100644 --- a/eth/downloader/statesync.go +++ b/eth/downloader/statesync.go @@ -214,7 +214,7 @@ func (d *Downloader) runStateSync(s *stateSync) *stateSync { type stateSync struct { d *Downloader // Downloader instance to access and manage current peerset - sched *trie.TrieSync // State trie sync scheduler defining the tasks + sched *trie.Sync // State trie sync scheduler defining the tasks keccak hash.Hash // Keccak256 hasher to verify deliveries with tasks map[common.Hash]*stateTask // Set of tasks currently queued for retrieval |