Skip to content

Commit c2e5c3b

Browse files
authored
fix(network-command): wrong value passed to addDebugOptions inside the 'network' command (#1415)
Signed-off-by: instamenta <[email protected]>
1 parent 0e3f41f commit c2e5c3b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/commands/network.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -384,8 +384,8 @@ export class NetworkCommand extends BaseCommand {
384384
// add debug options to the debug node
385385
config.consensusNodes.filter(consensusNode => {
386386
if (consensusNode.name === config.debugNodeAlias) {
387-
config.consensusNodes[consensusNode.cluster] = addDebugOptions(
388-
config.consensusNodes[consensusNode.cluster],
387+
valuesArgs[consensusNode.cluster] = addDebugOptions(
388+
valuesArgs[consensusNode.cluster],
389389
config.debugNodeAlias,
390390
extraEnvIndex,
391391
);

0 commit comments

Comments
 (0)