Browse Source

use returned amount with ! shortcut

283 1.9
ThomasV 11 years ago
parent
commit
051c882a3f
  1. 2
      gui/qt/main_window.py

2
gui/qt/main_window.py

@ -793,7 +793,7 @@ class ElectrumWindow(QMainWindow):
c, u = self.wallet.get_account_balance(self.current_account) 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) inputs, total, fee = self.wallet.choose_tx_inputs_from_account( c + u, 0, self.current_account)
fee = self.wallet.estimated_fee(inputs) fee = self.wallet.estimated_fee(inputs)
amount = c + u - fee amount = total - fee
self.amount_e.setText( self.format_amount(amount) ) self.amount_e.setText( self.format_amount(amount) )
self.fee_e.setText( self.format_amount( fee ) ) self.fee_e.setText( self.format_amount( fee ) )
return return

Loading…
Cancel
Save