fix(@embark/cli): properly forward cli options to ethereum simulator

This commit is contained in:
Michael Bradley, Jr 2019-08-08 17:38:12 -05:00 committed by Michael Bradley
parent 9d81fc5b1c
commit beebbe6e58

View File

@ -230,8 +230,8 @@ class Cmd {
embark.simulator({ embark.simulator({
port: options.port, port: options.port,
host: options.host, host: options.host,
numAccounts: options.numAccounts, numAccounts: options.accounts,
defaultBalance: options.balance, defaultBalance: options.defaultBalanceEther,
gasLimit: options.gasLimit gasLimit: options.gasLimit
}); });
}); });