This commit is contained in:
ThomasV 2015-08-05 18:01:56 +02:00
parent 43880d452e
commit 252c73a06a
1 changed files with 3 additions and 0 deletions

View File

@ -2480,6 +2480,9 @@ class ElectrumWindow(QMainWindow):
fee = self.wallet.fee_per_kb(self.config)
tx = Transaction.sweep(get_pk(), self.network, get_address(), fee)
if not tx:
self.show_message(_('No inputs found. (Note that inputs need to be confirmed)'))
return
self.show_transaction(tx)