Skip to content

Commit

Permalink
fix: don't pass default value for --node-url (#10427)
Browse files Browse the repository at this point in the history
fixes #10419
  • Loading branch information
spypsy authored Dec 5, 2024
1 parent 990d11b commit 5299481
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions yarn-project/cli/src/cmds/pxe/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import { type DebugLogger, type LogFn } from '@aztec/foundation/log';
import { type Command } from 'commander';

import {
LOCALHOST,
logJson,
makePxeOption,
parseAztecAddress,
Expand Down Expand Up @@ -145,7 +144,7 @@ export function injectCommands(program: Command, log: LogFn, debugLogger: DebugL
program
.command('get-node-info')
.description('Gets the information of an Aztec node from a PXE or directly from an Aztec node.')
.option('--node-url <string>', 'URL of the node.', `http://${LOCALHOST}:8080`)
.option('--node-url <string>', 'URL of the node.')
.addOption(makePxeOption(false))
.action(async options => {
const { getNodeInfo } = await import('./get_node_info.js');
Expand Down

0 comments on commit 5299481

Please sign in to comment.