diff --git a/lib/core/config.js b/lib/core/config.js index a56e33c2..0c9aa15c 100644 --- a/lib/core/config.js +++ b/lib/core/config.js @@ -183,10 +183,11 @@ Config.prototype.loadBlockchainConfigFile = function() { if (!configFilePath) { this.blockchainConfig.default = true; } - if(!this.blockchainConfig.account && !this.blockchainConfig.isDev && this.env !== 'development') { + if (!this.blockchainConfig.account && !this.blockchainConfig.isDev && + this.env !== 'development' && this.env !== 'test') { this.logger.warn( __('Account settings are needed for this chain.' + - ' Please put a valid address and possibly a password in your blockchain config or use a dev chain.') + ' Please put a valid address and possibly a password in your blockchain config or use a dev chain.') ); } };