Skip to content

Commit e42af4a

Browse files
Changed comments and removed .DS_Store
1 parent dec5840 commit e42af4a

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

.DS_Store

-6 KB
Binary file not shown.

bitcoinutils/script.py

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -225,11 +225,10 @@
225225
b"\xaf": "OP_CHECKMULTISIGVERIFY",
226226
b"\xba": "OP_CHECKSIGADD", # added this new OPCODE
227227
# 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
228+
# This used to be OP_NOP2
229+
b"\xb1": "OP_CHECKLOCKTIMEVERIFY",
230+
# This used to be OP_NOP3
231+
b"\xb2": "OP_CHECKSEQUENCEVERIFY",
233232
}
234233

235234

0 commit comments

Comments
 (0)