From 87de044c065cad763ea1ade49cb9200836dc8dbd Mon Sep 17 00:00:00 2001 From: Anthony Laibe Date: Mon, 23 Jul 2018 11:05:07 +0100 Subject: [PATCH] Remove not used options --- lib/cmd.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/lib/cmd.js b/lib/cmd.js index e151e3f7..11691a90 100644 --- a/lib/cmd.js +++ b/lib/cmd.js @@ -142,7 +142,6 @@ class Cmd { console() { program .command('console [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('--no-color', __('no colors in case it\'s needed for compatbility purposes')) .option('--logfile [logfile]', __('filename to output logs (default: %s)', 'none')) @@ -153,8 +152,6 @@ class Cmd { i18n.setOrDetectLocale(options.locale); embark.console({ env: env || 'development', - serverPort: options.port, - serverHost: options.host, client: options.client || 'geth', locale: options.locale, logFile: options.logfile,