From 6320b60c6b8b890d908d843b0d0d9aaf111ff0fd Mon Sep 17 00:00:00 2001 From: sergeywh1te Date: Fri, 16 Dec 2022 13:19:42 +0400 Subject: [PATCH] type fix for reinitFlowTest --- client/flow_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/flow_test.go b/client/flow_test.go index aba42360..a3003681 100644 --- a/client/flow_test.go +++ b/client/flow_test.go @@ -879,7 +879,7 @@ func TestBakedMessagesFlow(t *testing.T) { startingPort := 8085 topic := "test_topic" storagePath := "/tmp/dc4bc_storage" - nodes, err := initNodes(numNodes, startingPort, storagePath, topic, nil) + nodes, err := initNodes(numNodes, startingPort, storagePath, topic, nil, nil) if err != nil { t.Fatalf("Failed to init nodes, err: %v", err) } @@ -1265,7 +1265,7 @@ func TestReinitDKGFlow_authentic0_1_4(t *testing.T) { fmt.Println("message signed successfully") } } - err = verifySignatures(hex.EncodeToString(dkgID[:]), nodes[0]) + err = verifySignatures(hex.EncodeToString(dkgID[:]), nodes[0], []int64{}) if err != nil { t.Fatalf("failed to verify signatures: %v\n", err) }