tfix #661 - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit 8a7a6f347beff3a66af845a54e74a670f1f573c0 DIR parent a332a2a7eeb9aa044caaad2f5928088b94393dce HTML Author: ThomasV <thomasv@gitorious> Date: Thu, 17 Apr 2014 17:05:36 +0200 fix #661 Diffstat: M lib/wallet.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- DIR diff --git a/lib/wallet.py b/lib/wallet.py t@@ -1261,7 +1261,7 @@ class NewWallet: def send_tx(self, tx): # asynchronous self.tx_event.clear() - self.network.interface.send([('blockchain.transaction.broadcast', [str(tx)])], self.on_broadcast) + self.network.send([('blockchain.transaction.broadcast', [str(tx)])], self.on_broadcast) return tx.hash() def on_broadcast(self, i, r):