diff options
author | Yusup <awklsgrep@gmail.com> | 2018-04-04 18:25:02 +0800 |
---|---|---|
committer | Felix Lange <fjl@users.noreply.github.com> | 2018-04-04 18:25:02 +0800 |
commit | 7aad81f8815084c8ed032705fbaf6d3710e518cf (patch) | |
tree | a79cccc5f2040ac2ec496ca18e7381390c30fbc7 /eth/downloader/downloader_test.go | |
parent | 2a4bd55b43df92fe2f83468656ca03199596bceb (diff) | |
download | dexon-7aad81f8815084c8ed032705fbaf6d3710e518cf.tar.gz dexon-7aad81f8815084c8ed032705fbaf6d3710e518cf.tar.zst dexon-7aad81f8815084c8ed032705fbaf6d3710e518cf.zip |
eth: fix typos (#16414)
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 cb671a7df..e85e234c0 100644 --- a/eth/downloader/downloader_test.go +++ b/eth/downloader/downloader_test.go @@ -159,7 +159,7 @@ func (dl *downloadTester) makeChainFork(n, f int, parent *types.Block, parentRec // Create the common suffix hashes, headers, blocks, receipts := dl.makeChain(n-f, 0, parent, parentReceipts, false) - // Create the forks, making the second heavyer if non balanced forks were requested + // Create the forks, making the second heavier if non balanced forks were requested hashes1, headers1, blocks1, receipts1 := dl.makeChain(f, 1, blocks[hashes[0]], receipts[hashes[0]], false) hashes1 = append(hashes1, hashes[1:]...) |