forked from LBRYCommunity/lbry-sdk
add is_hd=true for default migrated wallet
This commit is contained in:
parent
a1b4c9acd6
commit
3b6a879fc9
1 changed files with 3 additions and 2 deletions
|
@ -104,8 +104,9 @@ class LbryWalletManager(BaseWalletManager):
|
||||||
'certificates': json_dict['claim_certificates'],
|
'certificates': json_dict['claim_certificates'],
|
||||||
'receiving_gap': 20,
|
'receiving_gap': 20,
|
||||||
'change_gap': 6,
|
'change_gap': 6,
|
||||||
'receiving_maximum_use_per_address': 2,
|
'receiving_maximum_uses_per_address': 2,
|
||||||
'change_maximum_use_per_address': 2
|
'change_maximum_uses_per_address': 2,
|
||||||
|
'is_hd': True
|
||||||
}]
|
}]
|
||||||
}, indent=4, sort_keys=True)
|
}, indent=4, sort_keys=True)
|
||||||
with open(wallet_file_path, 'w') as f:
|
with open(wallet_file_path, 'w') as f:
|
||||||
|
|
Loading…
Reference in a new issue