diff --git a/libwallet/src/slate.rs b/libwallet/src/slate.rs index 84856da6c..c790316af 100644 --- a/libwallet/src/slate.rs +++ b/libwallet/src/slate.rs @@ -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 { + pub fn msg_to_sign(&self) -> Result { let msg = self.kernel_features()?.kernel_sig_msg()?; Ok(msg) } @@ -432,7 +432,7 @@ impl Slate { } /// Return the sum of public nonces - fn pub_nonce_sum(&self, secp: &secp::Secp256k1) -> Result { + pub fn pub_nonce_sum(&self, secp: &secp::Secp256k1) -> Result { let pub_nonces: Vec<&PublicKey> = self .participant_data .iter()