aboutsummaryrefslogtreecommitdiffstats
path: root/core/helper_test.go
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-12-30 20:32:01 +0800
committerobscuren <geffobscura@gmail.com>2014-12-30 20:32:01 +0800
commit2f8a45cd8b2f565359f2c955145047acca2a2433 (patch)
treec801d7d1a9260a222a5c0bd9d5aa8cd82deaea9e /core/helper_test.go
parentce68ac695981523aca5cf83e051597f46070547d (diff)
downloadgo-tangerine-2f8a45cd8b2f565359f2c955145047acca2a2433.tar
go-tangerine-2f8a45cd8b2f565359f2c955145047acca2a2433.tar.gz
go-tangerine-2f8a45cd8b2f565359f2c955145047acca2a2433.tar.bz2
go-tangerine-2f8a45cd8b2f565359f2c955145047acca2a2433.tar.lz
go-tangerine-2f8a45cd8b2f565359f2c955145047acca2a2433.tar.xz
go-tangerine-2f8a45cd8b2f565359f2c955145047acca2a2433.tar.zst
go-tangerine-2f8a45cd8b2f565359f2c955145047acca2a2433.zip
Fixed chain test & added new chain
Diffstat (limited to 'core/helper_test.go')
-rw-r--r--core/helper_test.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/helper_test.go b/core/helper_test.go
index b340144fd..b8bf254d7 100644
--- a/core/helper_test.go
+++ b/core/helper_test.go
@@ -9,7 +9,7 @@ import (
"github.com/ethereum/go-ethereum/ethdb"
"github.com/ethereum/go-ethereum/ethutil"
"github.com/ethereum/go-ethereum/event"
- "github.com/ethereum/go-ethereum/wire"
+ "github.com/ethereum/go-ethereum/p2p"
)
// Implement our EthTest Manager
@@ -54,11 +54,11 @@ func (tm *TestManager) TxPool() *TxPool {
func (tm *TestManager) EventMux() *event.TypeMux {
return tm.eventMux
}
-func (tm *TestManager) Broadcast(msgType wire.MsgType, data []interface{}) {
+func (tm *TestManager) Broadcast(msgType p2p.Msg, data []interface{}) {
fmt.Println("Broadcast not implemented")
}
-func (tm *TestManager) ClientIdentity() wire.ClientIdentity {
+func (tm *TestManager) ClientIdentity() p2p.ClientIdentity {
return nil
}
func (tm *TestManager) KeyManager() *crypto.KeyManager {