aboutsummaryrefslogtreecommitdiffstats
path: root/eth/handler_test.go
diff options
context:
space:
mode:
authorPéter Szilágyi <peterke@gmail.com>2018-09-19 16:47:09 +0800
committerPéter Szilágyi <peterke@gmail.com>2018-09-19 16:47:09 +0800
commitfaa69bea1cade1d0f8b00814fc0616c5a57f0709 (patch)
treeb42f467ce5f600a2151f9c81b5d71dd9b479f151 /eth/handler_test.go
parent67c332e9b5c1afff65108abcc2b6883ace72abb9 (diff)
downloaddexon-faa69bea1cade1d0f8b00814fc0616c5a57f0709.tar
dexon-faa69bea1cade1d0f8b00814fc0616c5a57f0709.tar.gz
dexon-faa69bea1cade1d0f8b00814fc0616c5a57f0709.tar.bz2
dexon-faa69bea1cade1d0f8b00814fc0616c5a57f0709.tar.lz
dexon-faa69bea1cade1d0f8b00814fc0616c5a57f0709.tar.xz
dexon-faa69bea1cade1d0f8b00814fc0616c5a57f0709.tar.zst
dexon-faa69bea1cade1d0f8b00814fc0616c5a57f0709.zip
core, eth: fix goimports for Go 1.11
Diffstat (limited to 'eth/handler_test.go')
-rw-r--r--eth/handler_test.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/eth/handler_test.go b/eth/handler_test.go
index fee4114eb..dfaee2a15 100644
--- a/eth/handler_test.go
+++ b/eth/handler_test.go
@@ -242,10 +242,10 @@ func testGetBlockBodies(t *testing.T, protocol int) {
available []bool // Availability of explicitly requested blocks
expected int // Total number of existing blocks to expect
}{
- {1, nil, nil, 1}, // A single random block should be retrievable
- {10, nil, nil, 10}, // Multiple random blocks should be retrievable
- {limit, nil, nil, limit}, // The maximum possible blocks should be retrievable
- {limit + 1, nil, nil, limit}, // No more than the possible block count should be returned
+ {1, nil, nil, 1}, // A single random block should be retrievable
+ {10, nil, nil, 10}, // Multiple random blocks should be retrievable
+ {limit, nil, nil, limit}, // The maximum possible blocks should be retrievable
+ {limit + 1, nil, nil, limit}, // No more than the possible block count should be returned
{0, []common.Hash{pm.blockchain.Genesis().Hash()}, []bool{true}, 1}, // The genesis block should be retrievable
{0, []common.Hash{pm.blockchain.CurrentBlock().Hash()}, []bool{true}, 1}, // The chains head block should be retrievable
{0, []common.Hash{{}}, []bool{false}, 0}, // A non existent block should not be returned