aboutsummaryrefslogtreecommitdiffstats
path: root/eth/downloader/downloader_test.go
diff options
context:
space:
mode:
authorFelix Lange <fjl@twurst.com>2016-03-16 02:38:24 +0800
committerFelix Lange <fjl@twurst.com>2016-03-16 02:38:24 +0800
commit066d30152088188cec782bb62844550332d6b142 (patch)
tree93afcd1ed8c3661a9ff736ff32c410bfeece39db /eth/downloader/downloader_test.go
parente189fb839c688b418b43ad6533111c246c109a93 (diff)
parentbbbe2360d02a5c8191e98cd6c3cbefe20db2b9db (diff)
downloaddexon-066d30152088188cec782bb62844550332d6b142.tar
dexon-066d30152088188cec782bb62844550332d6b142.tar.gz
dexon-066d30152088188cec782bb62844550332d6b142.tar.bz2
dexon-066d30152088188cec782bb62844550332d6b142.tar.lz
dexon-066d30152088188cec782bb62844550332d6b142.tar.xz
dexon-066d30152088188cec782bb62844550332d6b142.tar.zst
dexon-066d30152088188cec782bb62844550332d6b142.zip
Merge pull request #2352 from leijurv/patch-5
eth: various typos
Diffstat (limited to 'eth/downloader/downloader_test.go')
-rw-r--r--eth/downloader/downloader_test.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/eth/downloader/downloader_test.go b/eth/downloader/downloader_test.go
index ff57fe167..e66a90264 100644
--- a/eth/downloader/downloader_test.go
+++ b/eth/downloader/downloader_test.go
@@ -277,7 +277,7 @@ func (dl *downloadTester) insertHeaders(headers []*types.Header, checkFreq int)
dl.lock.Lock()
defer dl.lock.Unlock()
- // Do a quick check, as the blockchain.InsertHeaderChain doesn't insert anthing in case of errors
+ // Do a quick check, as the blockchain.InsertHeaderChain doesn't insert anything in case of errors
if _, ok := dl.ownHeaders[headers[0].ParentHash]; !ok {
return 0, errors.New("unknown parent")
}
@@ -958,7 +958,7 @@ func testMultiSynchronisation(t *testing.T, protocol int, mode SyncMode) {
}
// Tests that synchronisations behave well in multi-version protocol environments
-// and not wreak havok on other nodes in the network.
+// and not wreak havoc on other nodes in the network.
func TestMultiProtoSynchronisation61(t *testing.T) { testMultiProtoSync(t, 61, FullSync) }
func TestMultiProtoSynchronisation62(t *testing.T) { testMultiProtoSync(t, 62, FullSync) }
func TestMultiProtoSynchronisation63Full(t *testing.T) { testMultiProtoSync(t, 63, FullSync) }
@@ -1188,7 +1188,7 @@ func testInvalidHeaderRollback(t *testing.T, protocol int, mode SyncMode) {
// Synchronise with the valid peer and make sure sync succeeds. Since the last
// rollback should also disable fast syncing for this process, verify that we
// did a fresh full sync. Note, we can't assert anything about the receipts
- // since we won't purge the database of them, hence we can't use asserOwnChain.
+ // since we won't purge the database of them, hence we can't use assertOwnChain.
tester.newPeer("valid", protocol, hashes, headers, blocks, receipts)
if err := tester.sync("valid", nil, mode); err != nil {
t.Fatalf("failed to synchronise blocks: %v", err)