Skip to content

Commit

Permalink
fix(frost-secp256k1-tr): add missing pub mod refresh and missing te…
Browse files Browse the repository at this point in the history
…st (#806)
  • Loading branch information
StackOverflowExcept1on authored Dec 11, 2024
1 parent dee685d commit 061d1cb
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
1 change: 1 addition & 0 deletions frost-secp256k1-tr/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -787,6 +787,7 @@ pub mod keys {
}

pub mod dkg;
pub mod refresh;
pub mod repairable;
}

Expand Down
7 changes: 7 additions & 0 deletions frost-secp256k1-tr/tests/integration_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,13 @@ fn check_refresh_shares_with_dealer_fails_with_invalid_identifier() {
>(max_signers, min_signers, &identifiers, error, rng);
}

#[test]
fn check_refresh_shares_with_dkg() {
let rng = thread_rng();

frost_core::tests::refresh::check_refresh_shares_with_dkg::<Secp256K1Sha256TR, _>(rng);
}

#[test]
fn check_sign_with_dealer() {
let rng = thread_rng();
Expand Down

0 comments on commit 061d1cb

Please sign in to comment.