Merge pull request #3096 from SomberNight/2fa_wallet_missing_wallet_type_attr

fix: set wallet_type attr for 2fa wallets
This commit is contained in:
ThomasV 2017-10-23 06:19:07 +02:00 committed by GitHub
commit 306aab8237
1 changed files with 2 additions and 0 deletions

View File

@ -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)