You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: only show account warning when Geth will actually start
Before, we checked if the network was a testnet or mainnet and
warned if there were no account sconfigured to sync. However, that
didn't take into account that we could connect to an external node,
hence not starting Geth at all.
So to fix that, I moved the condition and message to the Geth module
and only log when we start the node and the condition is met.
constaccountDocsMessage=__('For more info, check the docs: %s','https://framework.embarklabs.io/docs/blockchain_accounts_configuration.html'.underline);
449
422
if(this.blockchainConfig.account){
450
423
this.logger.error(__('The `account` config for the blockchain was removed. Please use `accounts` instead.'));
0 commit comments