From 90cfc6af90856b0e62f0638141b2f64197eace90 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Sat, 30 Jul 2016 09:36:59 +0200 Subject: [PATCH] fix trustedcoin plugin: get_max_amount --- plugins/trustedcoin/trustedcoin.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/plugins/trustedcoin/trustedcoin.py b/plugins/trustedcoin/trustedcoin.py index b35eca9b..38fcc75f 100644 --- a/plugins/trustedcoin/trustedcoin.py +++ b/plugins/trustedcoin/trustedcoin.py @@ -217,15 +217,14 @@ class Wallet_2fa(Multisig_Wallet): for i in inputs: self.add_input_info(i) xf = self.extra_fee() + _type, addr = recipient if xf and sendable >= xf: billing_address = self.billing_info['billing_address'] sendable -= xf - _type, addr = recipient outputs = [(_type, addr, sendable), (TYPE_ADDRESS, billing_address, xf)] else: - outputs = [(TYPE_ADDRESS, recipient, sendable)] - + outputs = [(_type, addr, sendable)] dummy_tx = Transaction.from_io(inputs, outputs) if fee is None: fee = self.estimate_fee(config, dummy_tx.estimated_size())