Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
cwlittle committed Feb 2, 2024
1 parent a1e227b commit 2a9229e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bitcoin/signer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ where
) -> Result<Self> {
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 {
Expand Down

0 comments on commit 2a9229e

Please sign in to comment.