We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dec5840 commit e42af4aCopy full SHA for e42af4a
.DS_Store
-6 KB
bitcoinutils/script.py
@@ -225,11 +225,10 @@
225
b"\xaf": "OP_CHECKMULTISIGVERIFY",
226
b"\xba": "OP_CHECKSIGADD", # added this new OPCODE
227
# locktime
228
- # Fixed duplicate keys by keeping only one mapping for each byte value
229
- # OP_NOP2 and OP_CHECKLOCKTIMEVERIFY refer to the same opcode (0xb1)
230
- b"\xb1": "OP_CHECKLOCKTIMEVERIFY", # Same as OP_NOP2
231
- # OP_NOP3 and OP_CHECKSEQUENCEVERIFY refer to the same opcode (0xb2)
232
- b"\xb2": "OP_CHECKSEQUENCEVERIFY", # Same as OP_NOP3
+ # This used to be OP_NOP2
+ b"\xb1": "OP_CHECKLOCKTIMEVERIFY",
+ # This used to be OP_NOP3
+ b"\xb2": "OP_CHECKSEQUENCEVERIFY",
233
}
234
235
0 commit comments