|
|
@ -173,8 +173,8 @@ class App { |
|
|
|
launchTestrpc() { |
|
|
|
launchTestrpc() { |
|
|
|
return new Promise((resolve, reject) => { |
|
|
|
return new Promise((resolve, reject) => { |
|
|
|
if (!this.norpc) { |
|
|
|
if (!this.norpc) { |
|
|
|
const defaultRpcOptions = `--gasLimit ${gasLimitHex} --accounts ${this.accounts} --port ${this.port}`; |
|
|
|
const defaultRpcOptions = `--accounts ${this.accounts} --port ${this.port}`; |
|
|
|
const options = this.testrpcOptions + ` --gasLimit ${gasLimitHex}` || defaultRpcOptions; |
|
|
|
const options = (this.testrpcOptions || defaultRpcOptions) + ` --gasLimit ${gasLimitHex}`; |
|
|
|
const command = './node_modules/ethereumjs-testrpc-sc/build/cli.node.js '; |
|
|
|
const command = './node_modules/ethereumjs-testrpc-sc/build/cli.node.js '; |
|
|
|
|
|
|
|
|
|
|
|
// Launch
|
|
|
|
// Launch
|
|
|
|