From 96f0801b909135841505604310d29e6b46c50bd0 Mon Sep 17 00:00:00 2001 From: ZuluCrypto Date: Wed, 27 Jun 2018 01:20:38 -0600 Subject: [PATCH] stellar.py - fix missing destination_amount when parsing path payment --- trezorlib/stellar.py | 1 + 1 file changed, 1 insertion(+) diff --git a/trezorlib/stellar.py b/trezorlib/stellar.py index ae15f1375..d8e3a9045 100644 --- a/trezorlib/stellar.py +++ b/trezorlib/stellar.py @@ -158,6 +158,7 @@ def _parse_operation_bytes(unpacker): send_max=unpacker.unpack_hyper(), destination_account=_xdr_read_address(unpacker), destination_asset=_xdr_read_asset(unpacker), + destination_amount=unpacker.unpack_hyper(), paths=[] )