diff options
author | Nick Johnson <arachnid@notdot.net> | 2017-07-03 22:17:12 +0800 |
---|---|---|
committer | Nick Johnson <arachnid@notdot.net> | 2017-07-03 22:17:12 +0800 |
commit | be8f8409bc7f0f3124b7ebd1480337e4b1942113 (patch) | |
tree | 1eafc7234f2a312580ccedba1dd3a95e3ac7ac5d /eth/downloader/downloader_test.go | |
parent | ae11545bc5fc0fcf4340d9f33d488eaf81d8bb2d (diff) | |
download | dexon-be8f8409bc7f0f3124b7ebd1480337e4b1942113.tar.gz dexon-be8f8409bc7f0f3124b7ebd1480337e4b1942113.tar.zst dexon-be8f8409bc7f0f3124b7ebd1480337e4b1942113.zip |
eth/downloader, les, light: Changes in response to review
Diffstat (limited to 'eth/downloader/downloader_test.go')
-rw-r--r-- | eth/downloader/downloader_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eth/downloader/downloader_test.go b/eth/downloader/downloader_test.go index bad2851d4..b354682a1 100644 --- a/eth/downloader/downloader_test.go +++ b/eth/downloader/downloader_test.go @@ -288,7 +288,7 @@ func (dl *downloadTester) CurrentFastBlock() *types.Block { return dl.genesis } -// FastSynccommitHead manually sets the head block to a given hash. +// FastSyncCommitHead manually sets the head block to a given hash. func (dl *downloadTester) FastSyncCommitHead(hash common.Hash) error { // For now only check that the state trie is correct if block := dl.GetBlockByHash(hash); block != nil { |