diff --git a/client/version.py b/client/version.py index 08f83bbd..901d98d6 100644 --- a/client/version.py +++ b/client/version.py @@ -1,2 +1,2 @@ -ELECTRUM_VERSION = "0.43" +ELECTRUM_VERSION = "0.43a" SEED_VERSION = 4 # bump this everytime the seed generation is modified diff --git a/client/wallet.py b/client/wallet.py index d2df3648..b355cc44 100644 --- a/client/wallet.py +++ b/client/wallet.py @@ -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: