summaryrefslogtreecommitdiff
path: root/rpcs/blockService_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'rpcs/blockService_test.go')
-rw-r--r--rpcs/blockService_test.go7
1 files changed, 2 insertions, 5 deletions
diff --git a/rpcs/blockService_test.go b/rpcs/blockService_test.go
index 38d07aba1..542e8783e 100644
--- a/rpcs/blockService_test.go
+++ b/rpcs/blockService_test.go
@@ -44,14 +44,11 @@ type mockUnicastPeer struct {
func (mup *mockUnicastPeer) GetAddress() string {
return ""
}
-func (mup *mockUnicastPeer) Unicast(ctx context.Context, msg []byte, tag protocol.Tag, callback network.UnicastWebsocketMessageStateCallback) error {
+func (mup *mockUnicastPeer) Unicast(ctx context.Context, data []byte, tag protocol.Tag) error {
return nil
}
func (mup *mockUnicastPeer) Version() string {
- return network.ProtocolVersion
-}
-func (mup *mockUnicastPeer) IsOutgoing() bool {
- return false
+ return "2.1"
}
// GetConnectionLatency returns the connection latency between the local node and this peer.