We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 061a663 + e42af4a commit 041a801Copy full SHA for 041a801
bitcoinutils/script.py
@@ -225,10 +225,10 @@
225
b"\xaf": "OP_CHECKMULTISIGVERIFY",
226
b"\xba": "OP_CHECKSIGADD", # added this new OPCODE
227
# locktime
228
- b"\xb1": "OP_NOP2",
229
- b"\xb1": "OP_CHECKLOCKTIMEVERIFY",
230
- b"\xb2": "OP_NOP3",
231
- b"\xb2": "OP_CHECKSEQUENCEVERIFY",
+ # This used to be OP_NOP2
+ b"\xb1": "OP_CHECKLOCKTIMEVERIFY",
+ # This used to be OP_NOP3
+ b"\xb2": "OP_CHECKSEQUENCEVERIFY",
232
}
233
234
@@ -452,4 +452,4 @@ def __repr__(self) -> str:
452
def __eq__(self, _other: object) -> bool:
453
if not isinstance(_other, Script):
454
return False
455
- return self.script == _other.script
+ return self.script == _other.script
0 commit comments