diff options
author | obscuren <geffobscura@gmail.com> | 2015-03-19 01:42:21 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2015-03-19 01:42:21 +0800 |
commit | af9da83ce2c6b0ab3047bfa2544b6914a2c4e2ea (patch) | |
tree | e254b7ed4a98d5b1d2fecfcbd4add9ad345a87b5 /eth/protocol_test.go | |
parent | e30c32339132d678b428ae531932a3f048665f59 (diff) | |
parent | c12046d6bfb197adb0004d629a783dd92f0cfc0f (diff) | |
download | go-tangerine-af9da83ce2c6b0ab3047bfa2544b6914a2c4e2ea.tar go-tangerine-af9da83ce2c6b0ab3047bfa2544b6914a2c4e2ea.tar.gz go-tangerine-af9da83ce2c6b0ab3047bfa2544b6914a2c4e2ea.tar.bz2 go-tangerine-af9da83ce2c6b0ab3047bfa2544b6914a2c4e2ea.tar.lz go-tangerine-af9da83ce2c6b0ab3047bfa2544b6914a2c4e2ea.tar.xz go-tangerine-af9da83ce2c6b0ab3047bfa2544b6914a2c4e2ea.tar.zst go-tangerine-af9da83ce2c6b0ab3047bfa2544b6914a2c4e2ea.zip |
Merge branch 'develop' into rpcfrontier
Diffstat (limited to 'eth/protocol_test.go')
-rw-r--r-- | eth/protocol_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eth/protocol_test.go b/eth/protocol_test.go index a2b59f117..108fb4475 100644 --- a/eth/protocol_test.go +++ b/eth/protocol_test.go @@ -9,10 +9,10 @@ import ( "testing" "time" + "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/core/types" "github.com/ethereum/go-ethereum/crypto" "github.com/ethereum/go-ethereum/errs" - "github.com/ethereum/go-ethereum/common" ethlogger "github.com/ethereum/go-ethereum/logger" "github.com/ethereum/go-ethereum/p2p" "github.com/ethereum/go-ethereum/p2p/discover" @@ -216,7 +216,7 @@ func (self *ethProtocolTester) checkMsg(i int, code uint64, val interface{}) (ms } func (self *ethProtocolTester) run() { - err := runEthProtocol(self.txPool, self.chainManager, self.blockPool, testPeer(), self.rw) + err := runEthProtocol(ProtocolVersion, NetworkId, self.txPool, self.chainManager, self.blockPool, testPeer(), self.rw) self.quit <- err } |