Browse Source

Merge pull request #3096 from SomberNight/2fa_wallet_missing_wallet_type_attr

fix: set wallet_type attr for 2fa wallets
seed_v14
ThomasV 7 years ago
committed by GitHub
parent
commit
306aab8237
  1. 2
      plugins/trustedcoin/trustedcoin.py

2
plugins/trustedcoin/trustedcoin.py

@ -191,6 +191,8 @@ server = TrustedCoinCosignerClient(user_agent="Electrum/" + version.ELECTRUM_VER
class Wallet_2fa(Multisig_Wallet):
wallet_type = '2fa'
def __init__(self, storage):
self.m, self.n = 2, 3
Deterministic_Wallet.__init__(self, storage)

Loading…
Cancel
Save