diff --git a/bitcoin/src/blockdata/script/borrowed.rs b/bitcoin/src/blockdata/script/borrowed.rs index 3e9c36a3..bc3c49c9 100644 --- a/bitcoin/src/blockdata/script/borrowed.rs +++ b/bitcoin/src/blockdata/script/borrowed.rs @@ -350,11 +350,7 @@ impl Script { /// (Note: taproot scripts don't count toward the sigop count of the block, /// nor do they have CHECKMULTISIG operations. This function does not count OP_CHECKSIGADD, /// so do not use this to try and estimate if a taproot script goes over the sigop budget.) - /// - /// # Errors - /// - /// If the Script is not able to be parsed to completion. - pub fn count_sigops(&self) -> Result { self.count_sigops_internal(true) } + pub fn count_sigops(&self) -> usize { self.count_sigops_internal(true) } /// Counts the sigops for this Script using legacy counting. /// @@ -368,20 +364,14 @@ impl Script { /// (Note: taproot scripts don't count toward the sigop count of the block, /// nor do they have CHECKMULTISIG operations. This function does not count OP_CHECKSIGADD, /// so do not use this to try and estimate if a taproot script goes over the sigop budget.) - /// - /// # Errors - /// - /// If the Script is not able to be parsed to completion. - pub fn count_sigops_legacy(&self) -> Result { - self.count_sigops_internal(false) - } + pub fn count_sigops_legacy(&self) -> usize { self.count_sigops_internal(false) } - fn count_sigops_internal(&self, accurate: bool) -> Result { + fn count_sigops_internal(&self, accurate: bool) -> usize { let mut n = 0; let mut pushnum_cache = None; for inst in self.instructions() { - match inst? { - Instruction::Op(opcode) => { + match inst { + Ok(Instruction::Op(opcode)) => { match opcode { OP_CHECKSIG | OP_CHECKSIGVERIFY => { n += 1; @@ -404,13 +394,15 @@ impl Script { } } } - Instruction::PushBytes(_) => { + Ok(Instruction::PushBytes(_)) => { pushnum_cache = None; } + // In Bitcoin Core it does `if (!GetOp(pc, opcode)) break;` + Err(_) => break, } } - Ok(n) + n } /// Iterates over the script instructions. diff --git a/bitcoin/src/blockdata/script/tests.rs b/bitcoin/src/blockdata/script/tests.rs index 60105d3c..01133356 100644 --- a/bitcoin/src/blockdata/script/tests.rs +++ b/bitcoin/src/blockdata/script/tests.rs @@ -625,7 +625,7 @@ fn test_script_get_sigop_count() { .push_opcode(OP_EQUAL) .into_script() .count_sigops(), - Ok(0) + 0 ); assert_eq!( Builder::new() @@ -636,7 +636,7 @@ fn test_script_get_sigop_count() { .push_opcode(OP_CHECKSIG) .into_script() .count_sigops(), - Ok(1) + 1 ); assert_eq!( Builder::new() @@ -648,7 +648,7 @@ fn test_script_get_sigop_count() { .push_opcode(OP_PUSHNUM_1) .into_script() .count_sigops(), - Ok(1) + 1 ); let multi = Builder::new() .push_opcode(OP_PUSHNUM_1) @@ -658,8 +658,8 @@ fn test_script_get_sigop_count() { .push_opcode(OP_PUSHNUM_3) .push_opcode(OP_CHECKMULTISIG) .into_script(); - assert_eq!(multi.count_sigops(), Ok(3)); - assert_eq!(multi.count_sigops_legacy(), Ok(20)); + assert_eq!(multi.count_sigops(), 3); + assert_eq!(multi.count_sigops_legacy(), 20); let multi_verify = Builder::new() .push_opcode(OP_PUSHNUM_1) .push_slice([3; 33]) @@ -669,8 +669,8 @@ fn test_script_get_sigop_count() { .push_opcode(OP_CHECKMULTISIGVERIFY) .push_opcode(OP_PUSHNUM_1) .into_script(); - assert_eq!(multi_verify.count_sigops(), Ok(3)); - assert_eq!(multi_verify.count_sigops_legacy(), Ok(20)); + assert_eq!(multi_verify.count_sigops(), 3); + assert_eq!(multi_verify.count_sigops_legacy(), 20); let multi_nopushnum_pushdata = Builder::new() .push_opcode(OP_PUSHNUM_1) .push_slice([3; 33]) @@ -678,8 +678,8 @@ fn test_script_get_sigop_count() { .push_slice([3; 33]) .push_opcode(OP_CHECKMULTISIG) .into_script(); - assert_eq!(multi_nopushnum_pushdata.count_sigops(), Ok(20)); - assert_eq!(multi_nopushnum_pushdata.count_sigops_legacy(), Ok(20)); + assert_eq!(multi_nopushnum_pushdata.count_sigops(), 20); + assert_eq!(multi_nopushnum_pushdata.count_sigops_legacy(), 20); let multi_nopushnum_op = Builder::new() .push_opcode(OP_PUSHNUM_1) .push_slice([3; 33]) @@ -687,8 +687,8 @@ fn test_script_get_sigop_count() { .push_opcode(OP_DROP) .push_opcode(OP_CHECKMULTISIG) .into_script(); - assert_eq!(multi_nopushnum_op.count_sigops(), Ok(20)); - assert_eq!(multi_nopushnum_op.count_sigops_legacy(), Ok(20)); + assert_eq!(multi_nopushnum_op.count_sigops(), 20); + assert_eq!(multi_nopushnum_op.count_sigops_legacy(), 20); } #[test]