tests: Remove redundant bytes²
This commit is contained in:
parent
0d6992168c
commit
9db48c5634
1 changed files with 3 additions and 3 deletions
|
@ -379,7 +379,7 @@ class CScriptNum():
|
||||||
r.append(0x80 if neg else 0)
|
r.append(0x80 if neg else 0)
|
||||||
elif neg:
|
elif neg:
|
||||||
r[-1] |= 0x80
|
r[-1] |= 0x80
|
||||||
return bytes(bytes([len(r)]) + r)
|
return bytes([len(r)]) + r
|
||||||
|
|
||||||
|
|
||||||
class CScript(bytes):
|
class CScript(bytes):
|
||||||
|
@ -404,9 +404,9 @@ class CScript(bytes):
|
||||||
other = CScriptNum.encode(other)
|
other = CScriptNum.encode(other)
|
||||||
elif isinstance(other, int):
|
elif isinstance(other, int):
|
||||||
if 0 <= other <= 16:
|
if 0 <= other <= 16:
|
||||||
other = bytes(bytes([CScriptOp.encode_op_n(other)]))
|
other = bytes([CScriptOp.encode_op_n(other)])
|
||||||
elif other == -1:
|
elif other == -1:
|
||||||
other = bytes(bytes([OP_1NEGATE]))
|
other = bytes([OP_1NEGATE])
|
||||||
else:
|
else:
|
||||||
other = CScriptOp.encode_op_pushdata(bn2vch(other))
|
other = CScriptOp.encode_op_pushdata(bn2vch(other))
|
||||||
elif isinstance(other, (bytes, bytearray)):
|
elif isinstance(other, (bytes, bytearray)):
|
||||||
|
|
Loading…
Add table
Reference in a new issue