fix: set wallet_type attr for 2fa wallets

This commit is contained in:
SomberNight 2017-10-23 03:08:06 +02:00
parent af8b7a7fb1
commit b0bab75859
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)