1
0

Merge pull request #8719 from SomberNight/202312_db_seedtype

wallet db: deduplicate "seed_type" field
This commit is contained in:
ghost43
2023-12-12 01:01:30 +00:00
committed by GitHub
5 changed files with 22 additions and 8 deletions

View File

@@ -592,8 +592,6 @@ class NewWalletWizard(AbstractWizard):
db.set_keystore_encryption(bool(data['password']) and data['encrypt'])
db.put('wallet_type', data['wallet_type'])
if 'seed_type' in data:
db.put('seed_type', data['seed_type'])
if data['wallet_type'] == 'standard':
db.put('keystore', k.dump())