Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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