update specs; remove unused env config

This commit is contained in:
Iuri Matias 2016-02-29 09:59:34 -05:00
parent f032256552
commit 32ef27212b
2 changed files with 2 additions and 2 deletions

View File

@ -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
}

View File

@ -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,