Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added .DS_Store
Binary file not shown.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ local*.cfg
build/
htmlcov/
python_bitcoinlib.egg-info/
dist/
dist/
2 changes: 1 addition & 1 deletion bitcoin/core/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ class CMutableTxOut(CTxOut):

@classmethod
def from_txout(cls, txout):
"""Create a fullly mutable copy of an existing TxOut"""
"""Create a fully mutable copy of an existing TxOut"""
return cls(txout.nValue, txout.scriptPubKey)


Expand Down
2 changes: 2 additions & 0 deletions bitcoin/core/script.py
Original file line number Diff line number Diff line change
Expand Up @@ -375,12 +375,14 @@ def __new__(cls, n):

OPCODES_BY_NAME = {
'OP_0': OP_0,
'OP_FALSE': OP_0,
'OP_PUSHDATA1': OP_PUSHDATA1,
'OP_PUSHDATA2': OP_PUSHDATA2,
'OP_PUSHDATA4': OP_PUSHDATA4,
'OP_1NEGATE': OP_1NEGATE,
'OP_RESERVED': OP_RESERVED,
'OP_1': OP_1,
'OP_TRUE': OP_1,
'OP_2': OP_2,
'OP_3': OP_3,
'OP_4': OP_4,
Expand Down
Loading