Skip to content
Snippets Groups Projects
Commit 0a204629 authored by Hans Moog's avatar Hans Moog
Browse files

Fix: fixed broken method signature in gossip test

parent 54866b13
No related branches found
No related tags found
No related merge requests found
......@@ -7,6 +7,7 @@ import (
"time"
"github.com/golang/protobuf/proto"
"github.com/iotaledger/goshimmer/packages/binary/tangle/model/transaction"
"github.com/iotaledger/goshimmer/packages/database/mapdb"
pb "github.com/iotaledger/goshimmer/packages/gossip/proto"
"github.com/iotaledger/goshimmer/packages/gossip/server"
......@@ -26,7 +27,7 @@ var (
testTxData = []byte("testTx")
)
func getTestTransaction([]byte) ([]byte, error) { return testTxData, nil }
func getTestTransaction(transaction.Id) ([]byte, error) { return testTxData, nil }
func TestClose(t *testing.T) {
_, detach := newEventMock(t)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment