Skip to content
Closed
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion examples/taptree_of_horror/taptree_of_horror.rs
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ fn main() {
// ====== 5. Sign and Create a Spending Transaction ======

// this is how you would sign for an internal key spend
//let _res = psbt.sign(&intneral_xpriv.xkey, secp).unwrap();
//let _res = psbt.sign(&internal_xpriv.xkey, secp).unwrap();

// how you would sign using the leaf that uses index 0 keys
let _res = psbt.sign(&a_prvs[0], secp).unwrap();
Expand Down
2 changes: 1 addition & 1 deletion fuzz/fuzz_targets/compile_descriptor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ fn do_test(data: &[u8]) {
let rtt = desc.to_string();
assert_eq!(output.to_lowercase(), rtt.to_lowercase());
} else {
panic!("compiler output something unparseable: {}", output)
panic!("compiler output something unparsable: {}", output)
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/expression/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -567,7 +567,7 @@ impl<'a> Tree<'a> {
//
// From a user point of view, UnmatchedCloseParen would probably be
// a clearer error to get, but it complicates the parser to do this,
// and "TralingCharacter" is technically correct, so we leave it for
// and "TrailingCharacter" is technically correct, so we leave it for
// now.
return Err(ParseTreeError::UnmatchedCloseParen { ch: ch.into(), pos });
}
Expand Down
Loading