From 32ef27212b49d064f4c1425f0838e88ff9d4f9fb Mon Sep 17 00:00:00 2001 From: Iuri Matias Date: Mon, 29 Feb 2016 09:59:34 -0500 Subject: [PATCH] update specs; remove unused env config --- lib/config/blockchain.js | 2 -- test/config.blockchain.js | 2 ++ 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/config/blockchain.js b/lib/config/blockchain.js index 46b14f7bb..bec3d87fd 100644 --- a/lib/config/blockchain.js +++ b/lib/config/blockchain.js @@ -33,7 +33,6 @@ BlockchainConfig.prototype.config = function(env) { config = { - env:env, rpcHost: config.rpc_host, rpcPort: config.rpc_port, gasLimit: config.gas_limit || 500000, @@ -56,7 +55,6 @@ BlockchainConfig.prototype.config = function(env) { account: config.account, geth_extra_opts: config.geth_extra_opts || [], testnet: config.testnet || false, - geth_extra_opts: config.geth_extra_opts, deploy_synchronously: config.deploy_synchronously || false } diff --git a/test/config.blockchain.js b/test/config.blockchain.js index 94b6a1f90..021e413e0 100644 --- a/test/config.blockchain.js +++ b/test/config.blockchain.js @@ -74,6 +74,7 @@ describe('embark.config.blockchain', function() { datadir: '/tmp/embark', chains: 'chains_development.json', deployTimeout: 45, + deploy_synchronously: false, networkId: 0, maxPeers: 4, mine: false, @@ -125,6 +126,7 @@ describe('embark.config.blockchain', function() { datadir: '/tmp/embark', chains: undefined, deployTimeout: 20, + deploy_synchronously: false, networkId: 0, maxPeers: 4, mine: false,