diff options
author | Felix Lange <fjl@twurst.com> | 2016-04-15 19:45:15 +0800 |
---|---|---|
committer | Felix Lange <fjl@twurst.com> | 2016-04-15 19:45:15 +0800 |
commit | 6197fbf8d70c1aa96c3e87de91ff3f46f454c1ea (patch) | |
tree | 1b3b3677892e2d94400f3604dc6c2dda4c05ccd4 /eth/downloader/queue.go | |
parent | 5c17b2f5211ec98a87140c874483681de4e34391 (diff) | |
parent | bf5ae502ef179490a039c9bcd66d32cd5a7ce5e9 (diff) | |
download | go-tangerine-6197fbf8d70c1aa96c3e87de91ff3f46f454c1ea.tar go-tangerine-6197fbf8d70c1aa96c3e87de91ff3f46f454c1ea.tar.gz go-tangerine-6197fbf8d70c1aa96c3e87de91ff3f46f454c1ea.tar.bz2 go-tangerine-6197fbf8d70c1aa96c3e87de91ff3f46f454c1ea.tar.lz go-tangerine-6197fbf8d70c1aa96c3e87de91ff3f46f454c1ea.tar.xz go-tangerine-6197fbf8d70c1aa96c3e87de91ff3f46f454c1ea.tar.zst go-tangerine-6197fbf8d70c1aa96c3e87de91ff3f46f454c1ea.zip |
Merge pull request #2458 from fjl/go-vet
all: fix go vet warnings
Diffstat (limited to 'eth/downloader/queue.go')
-rw-r--r-- | eth/downloader/queue.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eth/downloader/queue.go b/eth/downloader/queue.go index f86bae144..d8d1bddce 100644 --- a/eth/downloader/queue.go +++ b/eth/downloader/queue.go @@ -983,7 +983,7 @@ func (q *queue) DeliverNodeData(id string, data [][]byte, callback func(error, i continue } // Inject the next state trie item into the processing queue - process = append(process, trie.SyncResult{hash, blob}) + process = append(process, trie.SyncResult{Hash: hash, Data: blob}) accepted++ delete(request.Hashes, hash) |