fix trustedcoin plugin: get_max_amount

This commit is contained in:
ThomasV 2016-07-30 09:36:59 +02:00
parent f8c1bd1d3b
commit 90cfc6af90
1 changed files with 2 additions and 3 deletions

View File

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