mirror of
https://github.com/JoinMarket-Org/joinmarket-clientserver.git
synced 2026-08-13 12:33:40 +02:00
Disable creation of fidelity bond wallets
Leave disabled until the rest of the fidelity bond feature is created
This commit is contained in:
parent
869ef55ef9
commit
6b41b8b660
1 changed files with 4 additions and 1 deletions
|
|
@ -632,7 +632,10 @@ def wallet_generate_recover_bip39(method, walletspath, default_wallet_name,
|
|||
wallet_name = default_wallet_name
|
||||
wallet_path = os.path.join(walletspath, wallet_name)
|
||||
|
||||
support_fidelity_bonds = enter_do_support_fidelity_bonds()
|
||||
# disable creating fidelity bond wallets for now until the
|
||||
# rest of the fidelity bond feature is created
|
||||
#support_fidelity_bonds = enter_do_support_fidelity_bonds()
|
||||
support_fidelity_bonds = False
|
||||
wallet_cls = get_wallet_cls(get_configured_wallet_type(support_fidelity_bonds))
|
||||
|
||||
wallet = create_wallet(wallet_path, password, mixdepth, wallet_cls,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue