Skip to content
Snippets Groups Projects
Commit 6cd87659 authored by amanusk's avatar amanusk
Browse files

Remove range pattern warning in test-data

parent 9e6e8d32
No related merge requests found
......@@ -308,11 +308,11 @@ impl<F> TransactionBuilder<F> where F: Invoke<chain::Transaction> {
let raw_input_size = 40;
let script_len_size = match size {
//0...(0xfc + 1) => 1,
0...0xfd => 1,
0..=0xfd => 1,
//0xfd...(0xffff + 3) => 3,
0xfd...0x10002 => 3,
0xfd..=0x10002 => 3,
//0x10000...(0xffff_ffff + 5) => 5,
0x10000...0x1_0000_0004 => 5,
0x10000..=0x1_0000_0004 => 5,
_ => 9,
};
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment