From 2a9229e2b161612a349bfb37722169702e5d0f39 Mon Sep 17 00:00:00 2001 From: Charlie Little Date: Fri, 2 Feb 2024 16:22:39 -0600 Subject: [PATCH] Fix typo --- src/bitcoin/signer.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bitcoin/signer.rs b/src/bitcoin/signer.rs index 7b5a5a4a..a1d4c147 100644 --- a/src/bitcoin/signer.rs +++ b/src/bitcoin/signer.rs @@ -115,7 +115,7 @@ where ) -> Result { let xpriv_paths = if xpriv_paths.is_empty() { if !default_xpriv_path.as_ref().exists() { - return Err(Error::Signer("No local xpriv found Run `nomic set-signatory-key` if you do not have a signatory key on-chain".into())) + return Err(Error::Signer("No local xpriv found. Run `nomic set-signatory-key` if you do not have a signatory key on-chain.".into())); } vec![default_xpriv_path] } else {