File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ fn do_test(data: &[u8]) {
22
22
let rtt = desc. to_string ( ) ;
23
23
assert_eq ! ( output. to_lowercase( ) , rtt. to_lowercase( ) ) ;
24
24
} else {
25
- panic ! ( "compiler output something unparseable : {}" , output)
25
+ panic ! ( "compiler output something unparsable : {}" , output)
26
26
}
27
27
}
28
28
}
Original file line number Diff line number Diff line change @@ -227,7 +227,7 @@ pub struct Formatter<'f, 'a> {
227
227
}
228
228
229
229
impl < ' f , ' a > Formatter < ' f , ' a > {
230
- /// Contructs a new `Formatter`, wrapping a given `fmt::Formatter`.
230
+ /// Constructs a new `Formatter`, wrapping a given `fmt::Formatter`.
231
231
pub fn new ( f : & ' f mut fmt:: Formatter < ' a > ) -> Self { Formatter { fmt : f, eng : Engine :: new ( ) } }
232
232
233
233
/// Writes the checksum into the underlying `fmt::Formatter`.
Original file line number Diff line number Diff line change @@ -187,7 +187,7 @@ impl<'txin> Interpreter<'txin> {
187
187
/// - the input index is out of range
188
188
/// - Insufficient sighash information is present
189
189
/// - sighash single without corresponding output
190
- // TODO: Create a good first isse to change this to error
190
+ // TODO: Create a good first issue to change this to error
191
191
// TODO: Requires refactor to remove the script_code logic in order to use the new sighash API.
192
192
#[ allow( deprecated) ] // For segwit_signature_hash
193
193
pub fn verify_sig < C : secp256k1:: Verification , T : Borrow < TxOut > > (
You can’t perform that action at this time.
0 commit comments