diff --git a/solo/src/commands/node.mjs b/solo/src/commands/node.mjs index efb483d37..a6267d897 100644 --- a/solo/src/commands/node.mjs +++ b/solo/src/commands/node.mjs @@ -25,7 +25,6 @@ import { constants, Templates } from '../core/index.mjs' import { BaseCommand } from './base.mjs' import * as flags from './flags.mjs' import * as prompts from './prompts.mjs' -import { updateAccountKeys } from './flags.mjs' /** * Defines the core functionalities of 'node' command @@ -489,6 +488,9 @@ export class NodeCommand extends BaseCommand { task: async (ctx, task) => { if (ctx.config.updateAccountKeys) { await self.accountManager.prepareAccounts(ctx.config.namespace) + } else { + this.logger.showUser(chalk.yellowBright('> WARNING:'), chalk.yellow( + 'skipping special account keys update, special accounts will retain genesis private keys')) } } } diff --git a/solo/src/core/account_manager.mjs b/solo/src/core/account_manager.mjs index 70d1c4a12..33b26e86a 100644 --- a/solo/src/core/account_manager.mjs +++ b/solo/src/core/account_manager.mjs @@ -90,7 +90,6 @@ export class AccountManager { * @returns {Promise} */ async prepareAccounts (namespace) { - // TODO add disable account key update flag to node start commands or future GH Issue? const serviceMap = await this.getNodeServiceMap(namespace) const nodeClient = await this.getNodeClient( @@ -137,7 +136,7 @@ export class AccountManager { `Expected service ${serviceObject.name} to have a loadBalancerIP set for basepath ${this.k8.kubeClient.basePath}`) } const host = this.isLocalhost() ? '127.0.0.1' : serviceObject.loadBalancerIp - const port = serviceObject.grpcPort // TODO add grpcs logic + const port = serviceObject.grpcPort // TODO: add grpcs logic in https://github.com/hashgraph/full-stack-testing/issues/752 const targetPort = this.isLocalhost() ? localPort : port if (this.isLocalhost()) {