1
0

minor fixes for payto_edit

This commit is contained in:
ThomasV
2014-06-06 07:17:47 +02:00
parent 7c3d8471e5
commit 0673df9176
2 changed files with 7 additions and 6 deletions

View File

@@ -810,7 +810,8 @@ class ElectrumWindow(QMainWindow):
confirm_amount = self.config.get('confirm_amount', 100000000)
if amount >= confirm_amount:
if not self.question(_("send %(amount)s to %(address)s?")%{ 'amount' : self.format_amount(amount) + ' '+ self.base_unit(), 'address' : to_address}):
o = '\n'.join(map(lambda x:x[0], outputs))
if not self.question(_("send %(amount)s to %(address)s?")%{ 'amount' : self.format_amount(amount) + ' '+ self.base_unit(), 'address' : o}):
return
confirm_fee = self.config.get('confirm_fee', 100000)