Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changed pub_nonce_sum and msg_to_sign to be public functions #557

Merged
merged 2 commits into from
Mar 5, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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