add is_hd=true for default migrated wallet

This commit is contained in:
Lex Berezhny 2018-07-15 00:42:23 -04:00 committed by Jack Robison
parent a1b4c9acd6
commit 3b6a879fc9
No known key found for this signature in database
GPG key ID: DF25C68FE0239BB2

View file

@ -104,8 +104,9 @@ class LbryWalletManager(BaseWalletManager):
'certificates': json_dict['claim_certificates'],
'receiving_gap': 20,
'change_gap': 6,
'receiving_maximum_use_per_address': 2,
'change_maximum_use_per_address': 2
'receiving_maximum_uses_per_address': 2,
'change_maximum_uses_per_address': 2,
'is_hd': True
}]
}, indent=4, sort_keys=True)
with open(wallet_file_path, 'w') as f: