Browse Source

fix deserialize: OP_0 is not OP_PUSHDATA

283
thomasv 12 years ago
parent
commit
6766990931
  1. 2
      lib/deserialize.py

2
lib/deserialize.py

@ -315,7 +315,7 @@ def match_decoded(decoded, to_match):
if len(decoded) != len(to_match):
return False;
for i in range(len(decoded)):
if to_match[i] == opcodes.OP_PUSHDATA4 and decoded[i][0] <= opcodes.OP_PUSHDATA4:
if to_match[i] == opcodes.OP_PUSHDATA4 and decoded[i][0] <= opcodes.OP_PUSHDATA4 and decoded[i][0]>0:
continue # Opcodes below OP_PUSHDATA4 all just push data onto stack, and are equivalent.
if to_match[i] != decoded[i][0]:
return False

Loading…
Cancel
Save