Skip to content

Commit

Permalink
fix: ignore lockfiles when listing validator public keys
Browse files Browse the repository at this point in the history
  • Loading branch information
nflaig committed Jun 25, 2024
1 parent fe23f68 commit 45c47e9
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions packages/cli/src/cmds/validator/list.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@ export const list: CliCommand<IValidatorCliArgs, GlobalArgs, ReturnType> = {
handler: async (args) => {
const {network} = getBeaconConfigFromArgs(args);

// Ignore lockfiles to allow listing while validator client is running
args.force = true;

const signers = await getSignersFromArgs(args, network, {logger: console, signal: new AbortController().signal});

logSigners(console, signers);
Expand Down

0 comments on commit 45c47e9

Please sign in to comment.