aboutsummaryrefslogtreecommitdiffstats
path: root/eth/handler_test.go
diff options
context:
space:
mode:
authorPéter Szilágyi <peterke@gmail.com>2015-08-14 22:48:26 +0800
committerPéter Szilágyi <peterke@gmail.com>2015-08-24 22:57:28 +0800
commitca88e18f59af84f34ad67da21fd27a6407eea87c (patch)
treed1943d61c1d6992f1eea83936e420acd639ecb29 /eth/handler_test.go
parent42f44dda5468000b3b2c005ec485529bc5da3674 (diff)
downloadgo-tangerine-ca88e18f59af84f34ad67da21fd27a6407eea87c.tar
go-tangerine-ca88e18f59af84f34ad67da21fd27a6407eea87c.tar.gz
go-tangerine-ca88e18f59af84f34ad67da21fd27a6407eea87c.tar.bz2
go-tangerine-ca88e18f59af84f34ad67da21fd27a6407eea87c.tar.lz
go-tangerine-ca88e18f59af84f34ad67da21fd27a6407eea87c.tar.xz
go-tangerine-ca88e18f59af84f34ad67da21fd27a6407eea87c.tar.zst
go-tangerine-ca88e18f59af84f34ad67da21fd27a6407eea87c.zip
eth: kill off protocol eth/60 in preparation for eth/62
Diffstat (limited to 'eth/handler_test.go')
-rw-r--r--eth/handler_test.go3
1 files changed, 0 insertions, 3 deletions
diff --git a/eth/handler_test.go b/eth/handler_test.go
index 63c94faa1..6400d4e78 100644
--- a/eth/handler_test.go
+++ b/eth/handler_test.go
@@ -19,7 +19,6 @@ import (
// Tests that hashes can be retrieved from a remote chain by hashes in reverse
// order.
-func TestGetBlockHashes60(t *testing.T) { testGetBlockHashes(t, 60) }
func TestGetBlockHashes61(t *testing.T) { testGetBlockHashes(t, 61) }
func testGetBlockHashes(t *testing.T, protocol int) {
@@ -63,7 +62,6 @@ func testGetBlockHashes(t *testing.T, protocol int) {
// Tests that hashes can be retrieved from a remote chain by numbers in forward
// order.
-func TestGetBlockHashesFromNumber60(t *testing.T) { testGetBlockHashesFromNumber(t, 60) }
func TestGetBlockHashesFromNumber61(t *testing.T) { testGetBlockHashesFromNumber(t, 61) }
func testGetBlockHashesFromNumber(t *testing.T, protocol int) {
@@ -104,7 +102,6 @@ func testGetBlockHashesFromNumber(t *testing.T, protocol int) {
}
// Tests that blocks can be retrieved from a remote chain based on their hashes.
-func TestGetBlocks60(t *testing.T) { testGetBlocks(t, 60) }
func TestGetBlocks61(t *testing.T) { testGetBlocks(t, 61) }
func testGetBlocks(t *testing.T, protocol int) {