diff --git a/lib/cmds/blockchain/blockchain.js b/lib/cmds/blockchain/blockchain.js index 66adcffe..04579682 100644 --- a/lib/cmds/blockchain/blockchain.js +++ b/lib/cmds/blockchain/blockchain.js @@ -4,7 +4,7 @@ var fs = require('../../core/fs.js'); var GethCommands = require('./geth_commands.js'); -/*eslint complexity: ["error", 31]*/ +/*eslint complexity: ["error", 35]*/ var Blockchain = function(options) { this.blockchainConfig = options.blockchainConfig; this.env = options.env || 'development'; diff --git a/test/blockchain.js b/test/blockchain.js index 52ba4c67..06957e0f 100644 --- a/test/blockchain.js +++ b/test/blockchain.js @@ -36,7 +36,9 @@ describe('embark.Blockchain', function () { wsOrigins: false, wsPort: 8546, wsRPC: true, - targetGasLimit: false + targetGasLimit: false, + fast: false, + light: false }; let blockchain = new Blockchain(config, 'geth'); @@ -71,7 +73,9 @@ describe('embark.Blockchain', function () { wsOrigins: false, wsPort: 8546, wsRPC: true, - targetGasLimit: false + targetGasLimit: false, + fast: false, + light: false }; let blockchain = new Blockchain(config, 'geth');