diff --git a/allocmd/utilities/constants.py b/allocmd/utilities/constants.py index 5c73a7b..63dfc48 100644 --- a/allocmd/utilities/constants.py +++ b/allocmd/utilities/constants.py @@ -1 +1 @@ -cliVersion = "0.3.19" +cliVersion = "0.3.20" diff --git a/allocmd/utilities/utils.py b/allocmd/utilities/utils.py index 0b09f41..c1a81eb 100644 --- a/allocmd/utilities/utils.py +++ b/allocmd/utilities/utils.py @@ -74,8 +74,8 @@ def create_worker_account(worker_name, faucet_url, type, network="testnet"): subprocess.run([ 'curl', - '-Lvvv', - f'{faucet_url}/send/{network}/{address}' + '-L', + f'{faucet_url}send/{network}/{address}' ], stdout=subprocess.DEVNULL) print(colored(f"keys created and {network}-funded for this {type}. please check config.yaml for your address and mnemonic", "green")) @@ -88,8 +88,8 @@ def fundAddress(faucet_url, address, network="testnet"): try: subprocess.run([ 'curl', - '-Lvvv', - f'{faucet_url}/send/{network}/{address}' + '-L', + f'{faucet_url}send/{network}/{address}' ], stdout=subprocess.DEVNULL) print(colored(f"address funded with {network}-faucet", "green"))