mirror of
https://github.com/embarklabs/embark.git
synced 2025-01-11 22:34:24 +00:00
Merge pull request #785 from embark-framework/bug_fix/no-warning-dev
No accounts warning in development
This commit is contained in:
commit
48a3d70df2
@ -183,10 +183,11 @@ Config.prototype.loadBlockchainConfigFile = function() {
|
|||||||
if (!configFilePath) {
|
if (!configFilePath) {
|
||||||
this.blockchainConfig.default = true;
|
this.blockchainConfig.default = true;
|
||||||
}
|
}
|
||||||
if(!this.blockchainConfig.account && !this.blockchainConfig.isDev) {
|
if (!this.blockchainConfig.account && !this.blockchainConfig.isDev &&
|
||||||
|
this.env !== 'development' && this.env !== 'test') {
|
||||||
this.logger.warn(
|
this.logger.warn(
|
||||||
__('Account settings are needed for this chain.' +
|
__('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.')
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user