diff --git a/lib/cmds/blockchain/blockchain.js b/lib/cmds/blockchain/blockchain.js index 9c9d600f..352caecb 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", 30]*/ +/*eslint complexity: ["error", 31]*/ var Blockchain = function(options) { this.blockchainConfig = options.blockchainConfig; this.env = options.env || 'development'; diff --git a/test/blockchain.js b/test/blockchain.js index c53350ad..52ba4c67 100644 --- a/test/blockchain.js +++ b/test/blockchain.js @@ -35,7 +35,8 @@ describe('embark.Blockchain', function () { wsHost: "localhost", wsOrigins: false, wsPort: 8546, - wsRPC: true + wsRPC: true, + targetGasLimit: false }; let blockchain = new Blockchain(config, 'geth'); @@ -69,7 +70,8 @@ describe('embark.Blockchain', function () { wsHost: "localhost", wsOrigins: false, wsPort: 8546, - wsRPC: true + wsRPC: true, + targetGasLimit: false }; let blockchain = new Blockchain(config, 'geth');