commit 7a47d2341ecd3a33a0a7a9728320974eba37c87b
parent 1e4cdab096210ac0b8ebef1547c6d850ccc00d26
Author: ThomasV <thomasv@electrum.org>
Date: Fri, 2 Sep 2016 10:28:52 +0200
fix bug in trustedcoin constructor
Diffstat:
2 files changed, 1 insertion(+), 2 deletions(-)
diff --git a/lib/wallet.py b/lib/wallet.py
@@ -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".
diff --git a/plugins/trustedcoin/trustedcoin.py b/plugins/trustedcoin/trustedcoin.py
@@ -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