Skip to content

Commit

Permalink
Expose blind signer internal schnorr
Browse files Browse the repository at this point in the history
  • Loading branch information
nickfarrow committed Feb 3, 2023
1 parent e2e47e5 commit e23f800
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion schnorr_fun/src/blind.rs
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,8 @@ pub struct SignatureRequest {
/// are signed until there are `max_sessions` of them. Then all but one of the requests are signed
/// to prevent parrallel signing attacks (unless max_sessions is one, then signing is immediate).
pub struct BlindSigner<CH, NG> {
schnorr: Schnorr<CH, NG>,
/// schnorr instance for this signing server
pub schnorr: Schnorr<CH, NG>,
max_sessions: usize,
signature_requests: Vec<SignatureRequest>,
nonces: BTreeMap<Point<EvenY>, Scalar>,
Expand Down

0 comments on commit e23f800

Please sign in to comment.