Browse Source

restricting to one account so that at least it doesn't crash

283
Richard Ulrich 10 years ago
parent
commit
2ca8122c96
  1. 7
      plugins/btchipwallet.py

7
plugins/btchipwallet.py

@ -130,7 +130,12 @@ class BTChipWallet(BIP32_HD_Wallet):
return 'create_accounts' return 'create_accounts'
def can_create_accounts(self): def can_create_accounts(self):
return True return False
def synchronize(self):
# synchronize existing accounts
BIP32_Wallet.synchronize(self)
# no further accounts for the moment
def can_change_password(self): def can_change_password(self):
return False return False

Loading…
Cancel
Save