Skip to content

Commit

Permalink
fix(cmd): removes -h as an option for host for the simulator
Browse files Browse the repository at this point in the history
  • Loading branch information
jrainville authored and 0x-r4bbit committed Nov 13, 2018
1 parent 4961f70 commit 43be2a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cmd/cmd.js
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ class Cmd {
.description(__('run a fast ethereum rpc simulator'))
.option('--testrpc', __('use ganache-cli (former "testrpc") as the rpc simulator [%s]', 'default'))
.option('-p, --port [port]', __('port to run the rpc simulator (default: %s)', '8545'))
.option('-h, --host [host]', __('host to run the rpc simulator (default: %s)', 'localhost'))
.option('--host [host]', __('host to run the rpc simulator (default: %s)', 'localhost'))
.option('-a, --accounts [numAccounts]', __('number of accounts (default: %s)', '10'))
.option('-e, --defaultBalanceEther [balance]', __('Amount of ether to assign each test account (default: %s)', '100'))
.option('-l, --gasLimit [gasLimit]', __('custom gas limit (default: %s)', '8000000'))
Expand Down

0 comments on commit 43be2a2

Please sign in to comment.