mirror of
https://github.com/kvazar-network/kevacoin.git
synced 2025-02-04 11:14:16 +00:00
qa: Fix python TypeError in script.py
Github-Pull: #12475 Rebased-From: fa41d68a2e3f2148c3539a11b61ff835e3141c0d
This commit is contained in:
parent
7460945e0b
commit
41c29f6d1d
@ -526,11 +526,9 @@ class CScript(bytes):
|
|||||||
yield CScriptOp(opcode)
|
yield CScriptOp(opcode)
|
||||||
|
|
||||||
def __repr__(self):
|
def __repr__(self):
|
||||||
# For Python3 compatibility add b before strings so testcases don't
|
|
||||||
# need to change
|
|
||||||
def _repr(o):
|
def _repr(o):
|
||||||
if isinstance(o, bytes):
|
if isinstance(o, bytes):
|
||||||
return b"x('%s')" % hexlify(o).decode('ascii')
|
return "x('%s')" % hexlify(o).decode('ascii')
|
||||||
else:
|
else:
|
||||||
return repr(o)
|
return repr(o)
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user