diff --git a/lib/core/file.js b/lib/core/file.js index 75942e4ac..4c619317d 100644 --- a/lib/core/file.js +++ b/lib/core/file.js @@ -128,7 +128,7 @@ class File { } ], (err, content) => { if (err) { - console.error(__('Error while downloading the file'), err); + console.error(__('Error while downloading the file'), url, err); return callback(''); } callback(content.toString()); diff --git a/lib/modules/blockchain_process/simulator.js b/lib/modules/blockchain_process/simulator.js index 6ea68ff47..7c5145241 100644 --- a/lib/modules/blockchain_process/simulator.js +++ b/lib/modules/blockchain_process/simulator.js @@ -14,7 +14,7 @@ class Simulator { this.logger = options.logger; } - /*eslint complexity: ["error", 21]*/ + /*eslint complexity: ["error", 22]*/ run(options) { let cmds = []; diff --git a/test_apps/test_app/config/contracts.js b/test_apps/test_app/config/contracts.js index c4f3c743a..269fd1c4a 100644 --- a/test_apps/test_app/config/contracts.js +++ b/test_apps/test_app/config/contracts.js @@ -23,9 +23,6 @@ module.exports = { Ownable: { deploy: false }, - SimpleStorageTest: { - args: [100] - }, SimpleStorage: { fromIndex: 0, args: [100],