Skip to content

Commit

Permalink
Changed pub_nonce_sum and msg_to_sign to be public functions (#557)
Browse files Browse the repository at this point in the history
* [Dev] changed pub_nonce_sume to be public

* [Dev] made msg_to_sign public to be able to create signatures outside of
slate.rs

Co-authored-by: Jakob <jakob.abfalter@brex.io>
  • Loading branch information
jafalter and Jakob authored Mar 5, 2021
1 parent b4abb59 commit b3d4d03
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libwallet/src/slate.rs
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,7 @@ impl Slate {
}

// This is the msg that we will sign as part of the tx kernel.
fn msg_to_sign(&self) -> Result<secp::Message, Error> {
pub fn msg_to_sign(&self) -> Result<secp::Message, Error> {
let msg = self.kernel_features()?.kernel_sig_msg()?;
Ok(msg)
}
Expand Down Expand Up @@ -432,7 +432,7 @@ impl Slate {
}

/// Return the sum of public nonces
fn pub_nonce_sum(&self, secp: &secp::Secp256k1) -> Result<PublicKey, Error> {
pub fn pub_nonce_sum(&self, secp: &secp::Secp256k1) -> Result<PublicKey, Error> {
let pub_nonces: Vec<&PublicKey> = self
.participant_data
.iter()
Expand Down

0 comments on commit b3d4d03

Please sign in to comment.