Skip to content

Commit

Permalink
fix: tweaking tests should pass non-optional tweak params
Browse files Browse the repository at this point in the history
  • Loading branch information
0xBEEFCAF3 committed Jan 8, 2025
1 parent 847a565 commit c018ae3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions frost-secp256k1-tr/tests/tweaking_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ fn check_additional_tweaked_sign_with_dealer() -> Result<(), Box<dyn Error>> {
&signing_package,
nonces,
key_package,
Some(&signing_parameters),
&signing_parameters,
)?;
signature_shares.insert(*participant_identifier, signature_share);
}
Expand All @@ -70,7 +70,7 @@ fn check_additional_tweaked_sign_with_dealer() -> Result<(), Box<dyn Error>> {
&signing_package,
&signature_shares,
&pubkey_package,
Some(&signing_parameters),
&signing_parameters,
)?;

pubkey_package
Expand Down Expand Up @@ -179,7 +179,7 @@ fn check_tweaked_sign_with_dealer() -> Result<(), Box<dyn Error>> {
&signing_package,
nonces,
key_package,
Some(&signing_parameters),
&signing_parameters,
)?;
signature_shares.insert(*participant_identifier, signature_share);
}
Expand All @@ -188,7 +188,7 @@ fn check_tweaked_sign_with_dealer() -> Result<(), Box<dyn Error>> {
&signing_package,
&signature_shares,
&pubkey_package,
Some(&signing_parameters),
&signing_parameters,
)?;

pubkey_package
Expand Down

0 comments on commit c018ae3

Please sign in to comment.