From 4369c0dd965e02cf09c97789ce12175a6185a4d8 Mon Sep 17 00:00:00 2001 From: Kieran Prasch Date: Thu, 11 Jul 2019 14:08:35 -0700 Subject: [PATCH] Continue to assume software wallet usage, for now. --- nucypher/cli/deploy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nucypher/cli/deploy.py b/nucypher/cli/deploy.py index d72fbfe12..423bd6778 100644 --- a/nucypher/cli/deploy.py +++ b/nucypher/cli/deploy.py @@ -41,7 +41,7 @@ from nucypher.config.constants import DEFAULT_CONFIG_ROOT @click.option('--provider-uri', help="Blockchain provider's URI", type=click.STRING) @click.option('--geth', '-G', help="Run using the built-in geth node", is_flag=True) @click.option('--sync/--no-sync', default=True) -@click.option('--device/--no-device', default=True) +@click.option('--device/--no-device', default=False) # TODO: Make True by default. @click.option('--enode', help="An ethereum bootnode enode address to start learning from", type=click.STRING) @click.option('--config-root', help="Custom configuration directory", type=click.Path()) @click.option('--contract-name', help="Deploy a single contract by name", type=click.STRING)