Skip to content

Commit

Permalink
Merge pull request #13 from threshold-network/roundtrip-frost
Browse files Browse the repository at this point in the history
Follow-up: Increase the number of attempts for the FROST roundtrip test
  • Loading branch information
eth-r authored Jan 10, 2024
2 parents f173471 + cfaccb4 commit c4d451c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions frost/frost_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ func TestFrostRoundtrip(t *testing.T) {
publicKey := signers[0].publicKey

isSignatureValid := false
maxAttempts := 5
maxAttempts := 20

// From [BIP-340]:
// Let k' = int(rand) mod n[13].
Expand Down Expand Up @@ -64,7 +64,8 @@ func TestFrostRoundtrip(t *testing.T) {
)
if err != nil {
fmt.Printf(
"signature verification error on attempt [%v]: [%v]\n",
"[%v] signature verification error on attempt [%v]: [%v]\n",
testName,
i,
err,
)
Expand Down

0 comments on commit c4d451c

Please sign in to comment.