Skip to content

Commit

Permalink
chore: fix reference to Heap memory limt in FAQs (#6992)
Browse files Browse the repository at this point in the history
  • Loading branch information
nflaig committed Jul 31, 2024
1 parent 2f9275e commit 42af692
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/cli/src/cmds/beacon/handler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export async function beaconHandler(args: BeaconArgs & GlobalArgs): Promise<void
const heapSizeLimit = getHeapStatistics().heap_size_limit;
if (heapSizeLimit < EIGHT_GB) {
logger.warn(
`Node.js heap size limit is too low, consider increasing it to at least ${EIGHT_GB}. See https://chainsafe.github.io/lodestar/faqs#running-a-node for more details.`
`Node.js heap size limit is too low, consider increasing it to at least ${EIGHT_GB}. See https://chainsafe.github.io/lodestar/faqs/#running-a-beacon-node for more details.`
);
}

Expand Down

0 comments on commit 42af692

Please sign in to comment.