aboutsummaryrefslogtreecommitdiffstats
path: root/eth/protocol_test.go
diff options
context:
space:
mode:
authorFelix Lange <fjl@twurst.com>2016-07-23 05:23:30 +0800
committerGitHub <noreply@github.com>2016-07-23 05:23:30 +0800
commit60cd5bf9397bd8331bce3bb1884524d43c31dbb5 (patch)
tree17768268a303d5dbb1478797eaf49eb6979e9e0b /eth/protocol_test.go
parentf58ac2b46b66a81515a119a2b1924a831afdd0c9 (diff)
parent016007bd25f2b5e597c2ac2f7256c4e73574f70e (diff)
downloaddexon-60cd5bf9397bd8331bce3bb1884524d43c31dbb5.tar
dexon-60cd5bf9397bd8331bce3bb1884524d43c31dbb5.tar.gz
dexon-60cd5bf9397bd8331bce3bb1884524d43c31dbb5.tar.bz2
dexon-60cd5bf9397bd8331bce3bb1884524d43c31dbb5.tar.lz
dexon-60cd5bf9397bd8331bce3bb1884524d43c31dbb5.tar.xz
dexon-60cd5bf9397bd8331bce3bb1884524d43c31dbb5.tar.zst
dexon-60cd5bf9397bd8331bce3bb1884524d43c31dbb5.zip
Merge pull request #2842 from fjl/downloader-remove-eth61
eth, eth/downloader, eth/fetcher: delete eth/61 sync code
Diffstat (limited to 'eth/protocol_test.go')
-rw-r--r--eth/protocol_test.go3
1 files changed, 0 insertions, 3 deletions
diff --git a/eth/protocol_test.go b/eth/protocol_test.go
index f860d0a35..4633344da 100644
--- a/eth/protocol_test.go
+++ b/eth/protocol_test.go
@@ -37,7 +37,6 @@ func init() {
var testAccount, _ = crypto.HexToECDSA("b71c71a67e1177ad4e901695e1b4b9ee17ae16c6668d313eac2f96dbcda3f291")
// Tests that handshake failures are detected and reported correctly.
-func TestStatusMsgErrors61(t *testing.T) { testStatusMsgErrors(t, 61) }
func TestStatusMsgErrors62(t *testing.T) { testStatusMsgErrors(t, 62) }
func TestStatusMsgErrors63(t *testing.T) { testStatusMsgErrors(t, 63) }
@@ -90,7 +89,6 @@ func testStatusMsgErrors(t *testing.T, protocol int) {
}
// This test checks that received transactions are added to the local pool.
-func TestRecvTransactions61(t *testing.T) { testRecvTransactions(t, 61) }
func TestRecvTransactions62(t *testing.T) { testRecvTransactions(t, 62) }
func TestRecvTransactions63(t *testing.T) { testRecvTransactions(t, 63) }
@@ -119,7 +117,6 @@ func testRecvTransactions(t *testing.T, protocol int) {
}
// This test checks that pending transactions are sent.
-func TestSendTransactions61(t *testing.T) { testSendTransactions(t, 61) }
func TestSendTransactions62(t *testing.T) { testSendTransactions(t, 62) }
func TestSendTransactions63(t *testing.T) { testSendTransactions(t, 63) }