From 1dbe6a22b11023b22424911a0ea38c697c507459 Mon Sep 17 00:00:00 2001 From: damon Date: Fri, 11 Dec 2020 04:27:30 -0800 Subject: [PATCH] fix cli args https://github.com/nucypher/nucypher/issues/2473 --- nucypher/cli/commands/cloudworkers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nucypher/cli/commands/cloudworkers.py b/nucypher/cli/commands/cloudworkers.py index 1014335f8..5633a1850 100644 --- a/nucypher/cli/commands/cloudworkers.py +++ b/nucypher/cli/commands/cloudworkers.py @@ -157,7 +157,7 @@ def add(general_config, host_address, login_name, key_path, ssh_port, host_nickn @click.option('--ssh-port', help="The port this host's ssh daemon is listening on", default=22) @click.option('--namespace', help="Namespace for these operations. Used to address hosts and data locally and name hosts on cloud platforms.", type=click.STRING, default='local-stakeholders') @group_general_config -def add_for_stake(general_config, staker_address, host_address, login_name, key_path, ssh_port, namespace): +def add_for_stake(general_config, staker_options, config_file, staker_address, host_address, login_name, key_path, ssh_port, namespace): """Sets an existing node as the host for the given staker address.""" emitter = setup_emitter(general_config)