fix transaction broadcast

This commit is contained in:
ThomasV 2012-04-01 12:38:01 +02:00
parent 3ee5561488
commit 9d6a386f97
2 changed files with 2 additions and 2 deletions

View File

@ -1,2 +1,2 @@
ELECTRUM_VERSION = "0.43"
ELECTRUM_VERSION = "0.43a"
SEED_VERSION = 4 # bump this everytime the seed generation is modified

View File

@ -780,7 +780,7 @@ class Wallet:
def sendtx(self, tx):
tx_hash = Hash(tx.decode('hex') )[::-1].encode('hex')
self.tx_event.clear()
self.interface.send([('transaction.broadcast', [tx])])
self.interface.send([('blockchain.transaction.broadcast', [tx])])
self.tx_event.wait()
out = self.tx_result
if out != tx_hash: