mirror of https://github.com/embarklabs/embark.git
update specs; remove unused env config
This commit is contained in:
parent
f032256552
commit
32ef27212b
|
@ -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
|
||||
}
|
||||
|
||||
|
|
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue