kivy: minor fix
This commit is contained in:
@@ -684,7 +684,7 @@ class ElectrumWindow(App):
|
|||||||
def broadcast(self, tx):
|
def broadcast(self, tx):
|
||||||
if self.network and self.network.is_connected():
|
if self.network and self.network.is_connected():
|
||||||
self.show_info(_('Sending'))
|
self.show_info(_('Sending'))
|
||||||
ok, txid = self.wallet.sendtx(self.tx)
|
ok, txid = self.wallet.sendtx(tx)
|
||||||
self.show_info(txid)
|
self.show_info(txid)
|
||||||
else:
|
else:
|
||||||
self.show_info(_('Cannot broadcast transaction') + '\n' + _('Not connected'))
|
self.show_info(_('Cannot broadcast transaction') + '\n' + _('Not connected'))
|
||||||
|
|||||||
Reference in New Issue
Block a user