tfix bug in trustedcoin constructor - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit 7a47d2341ecd3a33a0a7a9728320974eba37c87b DIR parent 1e4cdab096210ac0b8ebef1547c6d850ccc00d26 HTML Author: ThomasV <thomasv@electrum.org> Date: Fri, 2 Sep 2016 10:28:52 +0200 fix bug in trustedcoin constructor Diffstat: M lib/wallet.py | 1 - M plugins/trustedcoin/trustedcoin.py | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) --- DIR diff --git a/lib/wallet.py b/lib/wallet.py t@@ -1539,7 +1539,6 @@ wallet_constructors = { def register_constructor(wallet_type, constructor): wallet_constructors[wallet_type] = constructor - # former WalletFactory class Wallet(object): """The main wallet "entry point". DIR diff --git a/plugins/trustedcoin/trustedcoin.py b/plugins/trustedcoin/trustedcoin.py t@@ -451,7 +451,7 @@ class TrustedCoinPlugin(BasePlugin): wizard.storage.put('x3/', k3.dump()) wizard.storage.put('use_trustedcoin', True) wizard.storage.write() - wizard.wallet = Wallet(wizard.storage) + wizard.wallet = Wallet_2fa(wizard.storage) wizard.run('create_addresses') @hook