tkivy: minor fix - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit 2492909ccc16d53d2e3253c01d08bc2939bc36df DIR parent b68e3608c9afb0f9f32497ae776ceac30a757e7e HTML Author: ThomasV <thomasv@electrum.org> Date: Fri, 19 Feb 2016 00:09:43 +0100 kivy: minor fix Diffstat: M gui/kivy/main_window.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- DIR diff --git a/gui/kivy/main_window.py b/gui/kivy/main_window.py t@@ -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'))