1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-23 07:58:09 +00:00

stellar.py - fix missing destination_amount when parsing path payment

This commit is contained in:
ZuluCrypto 2018-06-27 01:20:38 -06:00 committed by matejcik
parent dd324a99c5
commit 96f0801b90

View File

@ -158,6 +158,7 @@ def _parse_operation_bytes(unpacker):
send_max=unpacker.unpack_hyper(), send_max=unpacker.unpack_hyper(),
destination_account=_xdr_read_address(unpacker), destination_account=_xdr_read_address(unpacker),
destination_asset=_xdr_read_asset(unpacker), destination_asset=_xdr_read_asset(unpacker),
destination_amount=unpacker.unpack_hyper(),
paths=[] paths=[]
) )