tuse returned amount with ! shortcut - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit 051c882a3f5288b467fbee1950ec391204a245c4 DIR parent 8fe6f4208fb7495a378c0fc41a00b1bbf0e070e6 HTML Author: ThomasV <thomasv@gitorious> Date: Mon, 4 Nov 2013 10:16:48 +0100 use returned amount with ! shortcut Diffstat: M gui/qt/main_window.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- DIR diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py t@@ -793,7 +793,7 @@ class ElectrumWindow(QMainWindow): c, u = self.wallet.get_account_balance(self.current_account) inputs, total, fee = self.wallet.choose_tx_inputs_from_account( c + u, 0, self.current_account) fee = self.wallet.estimated_fee(inputs) - amount = c + u - fee + amount = total - fee self.amount_e.setText( self.format_amount(amount) ) self.fee_e.setText( self.format_amount( fee ) ) return