mirror of
https://github.com/trezor/trezor-firmware.git
synced 2025-08-04 12:56:25 +00:00
stellar.py - fix mising str() cast on type
This commit is contained in:
parent
8a284c03d1
commit
dd324a99c5
@ -284,7 +284,7 @@ def _parse_operation_bytes(unpacker):
|
|||||||
bump_to=unpacker.unpack_uhyper()
|
bump_to=unpacker.unpack_uhyper()
|
||||||
)
|
)
|
||||||
|
|
||||||
raise ValueError("Unknown operation type: " + type)
|
raise ValueError("Unknown operation type: " + str(type))
|
||||||
|
|
||||||
|
|
||||||
def _xdr_read_asset(unpacker):
|
def _xdr_read_asset(unpacker):
|
||||||
|
Loading…
Reference in New Issue
Block a user