Skip to content
This repository has been archived by the owner on Jun 22, 2023. It is now read-only.

Commit

Permalink
type fix for reinitFlowTest
Browse files Browse the repository at this point in the history
  • Loading branch information
sergeyWh1te committed Dec 16, 2022
1 parent efb362f commit 6320b60
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/flow_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
Expand Down Expand Up @@ -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)
}
Expand Down

0 comments on commit 6320b60

Please sign in to comment.