Skip to content

Commit c16f7ad

Browse files
committed
pow: Fix off-by-one error
Length check has an off-by-one error in it, we want the check it include hex strings of length 32 (eg, 128 bytes).
1 parent 4677f82 commit c16f7ad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bitcoin/src/pow.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -434,7 +434,7 @@ impl U256 {
434434

435435
// Caller to ensure `s` does not contain a prefix.
436436
fn from_hex_internal(s: &str) -> Result<Self, ParseIntError> {
437-
let (high, low) = if s.len() < 32 {
437+
let (high, low) = if s.len() <= 32 {
438438
let low = parse::hex_u128(s)?;
439439
(0, low)
440440
} else {

0 commit comments

Comments
 (0)