kivy: minor fix

This commit is contained in:
ThomasV 2016-02-19 00:09:43 +01:00
parent b68e3608c9
commit 2492909ccc
1 changed files with 1 additions and 1 deletions

View File

@ -684,7 +684,7 @@ class ElectrumWindow(App):
def broadcast(self, tx):
if self.network and self.network.is_connected():
self.show_info(_('Sending'))
ok, txid = self.wallet.sendtx(self.tx)
ok, txid = self.wallet.sendtx(tx)
self.show_info(txid)
else:
self.show_info(_('Cannot broadcast transaction') + '\n' + _('Not connected'))