From ba9a4982df8c0a5c34583769e2c35a7669762f58 Mon Sep 17 00:00:00 2001 From: GeneFerneau <80422284+GeneFerneau@users.noreply.github.com> Date: Wed, 19 May 2021 19:02:17 +0000 Subject: [PATCH] Fix documentation warning for Slate::msg_to_sign (#616) --- libwallet/src/slate.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libwallet/src/slate.rs b/libwallet/src/slate.rs index b2986d8e..f7dec639 100644 --- a/libwallet/src/slate.rs +++ b/libwallet/src/slate.rs @@ -375,7 +375,7 @@ impl Slate { } } - // This is the msg that we will sign as part of the tx kernel. + /// This is the msg that we will sign as part of the tx kernel. pub fn msg_to_sign(&self) -> Result { let msg = self.kernel_features()?.kernel_sig_msg()?; Ok(msg)