1
0
mirror of https://github.com/bitcoin/bips.git synced 2026-06-01 17:15:27 +00:00

fix: correct TxFieldSelector index upper bound

This commit is contained in:
yyhrnk
2026-02-02 19:48:05 +02:00
committed by GitHub
parent 43e3983e4b
commit e3c4dede41

View File

@@ -174,7 +174,7 @@ fn parse_inout_selection(
(current_input_idx as isize + rel) as usize (current_input_idx as isize + rel) as usize
}; };
if idx > nb_items { if idx >= nb_items {
return Err("selected index out of bounds"); return Err("selected index out of bounds");
} }
if let Some(last) = selected.last() { if let Some(last) = selected.last() {