From d4b3f70a75920b8d2fd1ff154090ad4732616052 Mon Sep 17 00:00:00 2001 From: chris-belcher Date: Fri, 30 Apr 2021 17:39:24 +0100 Subject: [PATCH] Enable creation of fidelity bond wallets on cli --- jmclient/jmclient/wallet_utils.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/jmclient/jmclient/wallet_utils.py b/jmclient/jmclient/wallet_utils.py index 4d03ec7..055ff45 100644 --- a/jmclient/jmclient/wallet_utils.py +++ b/jmclient/jmclient/wallet_utils.py @@ -633,13 +633,8 @@ def wallet_generate_recover_bip39(method, walletspath, default_wallet_name, if not wallet_name: wallet_name = default_wallet_name wallet_path = os.path.join(walletspath, wallet_name) - - # 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 + support_fidelity_bonds = enter_do_support_fidelity_bonds() wallet_cls = get_wallet_cls(get_configured_wallet_type(support_fidelity_bonds)) - wallet = create_wallet(wallet_path, password, mixdepth, wallet_cls, entropy=entropy, entropy_extension=mnemonic_extension)