1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-08-04 04:48:48 +00:00

stellar.py - fix mising str() cast on type

This commit is contained in:
ZuluCrypto 2018-06-27 01:20:05 -06:00 committed by matejcik
parent 8a284c03d1
commit dd324a99c5

View File

@ -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):