File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -308,7 +308,7 @@ class CMutableTxOut(CTxOut):
308
308
309
309
@classmethod
310
310
def from_txout (cls , txout ):
311
- """Create a fullly mutable copy of an existing TxOut"""
311
+ """Create a fully mutable copy of an existing TxOut"""
312
312
return cls (txout .nValue , txout .scriptPubKey )
313
313
314
314
Original file line number Diff line number Diff line change @@ -375,12 +375,14 @@ def __new__(cls, n):
375
375
376
376
OPCODES_BY_NAME = {
377
377
'OP_0' : OP_0 ,
378
+ 'OP_FALSE' : OP_0 ,
378
379
'OP_PUSHDATA1' : OP_PUSHDATA1 ,
379
380
'OP_PUSHDATA2' : OP_PUSHDATA2 ,
380
381
'OP_PUSHDATA4' : OP_PUSHDATA4 ,
381
382
'OP_1NEGATE' : OP_1NEGATE ,
382
383
'OP_RESERVED' : OP_RESERVED ,
383
384
'OP_1' : OP_1 ,
385
+ 'OP_TRUE' : OP_1 ,
384
386
'OP_2' : OP_2 ,
385
387
'OP_3' : OP_3 ,
386
388
'OP_4' : OP_4 ,
You can’t perform that action at this time.
0 commit comments