From caeb0c86b4b37c3ba3b91432ed9780fc66d2870c Mon Sep 17 00:00:00 2001 From: Anthony Laibe Date: Wed, 5 Sep 2018 14:12:26 +0100 Subject: [PATCH] Remove testrpc option --- cmd/cmd.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/cmd/cmd.js b/cmd/cmd.js index 3ca99ed55..e374be329 100644 --- a/cmd/cmd.js +++ b/cmd/cmd.js @@ -124,7 +124,7 @@ class Cmd { .command('build [environment]') .option('--contracts', 'only compile contracts into Embark wrappers') .option('--logfile [logfile]', __('filename to output logs (default: none)')) - .option('-c, --client [client]', __('Use a specific ethereum client or simulator (supported: %s)', 'geth, testrpc')) + .option('-c, --client [client]', __('Use a specific ethereum client (supported: %s)', 'geth')) .option('--loglevel [loglevel]', __('level of logging to display') + ' ["error", "warn", "info", "debug", "trace"]', /^(error|warn|info|debug|trace)$/i, 'debug') .option('--locale [locale]', __('language to use (default: en)')) .option('--pipeline [pipeline]', __('webpack config to use (default: production)')) @@ -145,7 +145,7 @@ class Cmd { program .command('run [environment]') .option('-p, --port [port]', __('port to run the dev webserver (default: %s)', '8000')) - .option('-c, --client [client]', __('Use a specific ethereum client or simulator (supported: %s)', 'geth, testrpc')) + .option('-c, --client [client]', __('Use a specific ethereum client (supported: %s)', 'geth')) .option('-b, --host [host]', __('host to run the dev webserver (default: %s)', 'localhost')) .option('--noserver', __('disable the development webserver')) .option('--nodashboard', __('simple mode, disables the dashboard')) @@ -175,7 +175,7 @@ class Cmd { console() { program .command('console [environment]') - .option('-c, --client [client]', __('Use a specific ethereum client or simulator (supported: %s)', 'geth, testrpc')) + .option('-c, --client [client]', __('Use a specific ethereum client (supported: %s)', 'geth')) .option('--logfile [logfile]', __('filename to output logs (default: %s)', 'none')) .option('--loglevel [loglevel]', __('level of logging to display') + ' ["error", "warn", "info", "debug", "trace"]', /^(error|warn|info|debug|trace)$/i, 'debug') .option('--locale [locale]', __('language to use (default: en)')) @@ -197,7 +197,7 @@ class Cmd { blockchain() { program .command('blockchain [environment]') - .option('-c, --client [client]', __('Use a specific ethereum client or simulator (supported: %s)', 'geth, testrpc')) + .option('-c, --client [client]', __('Use a specific ethereum client (supported: %s)', 'geth')) .option('--locale [locale]', __('language to use (default: en)')) .description(__('run blockchain server (default: %s)', 'development')) .action(function (env, options) { @@ -259,7 +259,7 @@ class Cmd { .option('--logfile [logfile]', __('filename to output logs (default: %s)', 'none')) .option('--loglevel [loglevel]', __('level of logging to display') + ' ["error", "warn", "info", "debug", "trace"]', /^(error|warn|info|debug|trace)$/i, 'debug') .option('--locale [locale]', __('language to use (default: en)')) - .option('-c, --client [client]', __('Use a specific ethereum client or simulator (supported: %s)', 'geth, testrpc')) + .option('-c, --client [client]', __('Use a specific ethereum client (supported: %s)', 'geth')) .option('--pipeline [pipeline]', __('webpack config to use (default: production)')) .description(__('Upload your dapp to a decentralized storage') + '.') .action(function (env, _options) {