From 8a7a6f347beff3a66af845a54e74a670f1f573c0 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Thu, 17 Apr 2014 17:05:36 +0200 Subject: [PATCH] fix #661 --- lib/wallet.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/wallet.py b/lib/wallet.py index 95ab665a..491642bc 100644 --- a/lib/wallet.py +++ b/lib/wallet.py @@ -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):