We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe23f68 commit 8cb08ffCopy full SHA for 8cb08ff
1 file changed
packages/cli/src/cmds/validator/list.ts
@@ -22,6 +22,9 @@ export const list: CliCommand<IValidatorCliArgs, GlobalArgs, ReturnType> = {
22
handler: async (args) => {
23
const {network} = getBeaconConfigFromArgs(args);
24
25
+ // Ignore lockfiles to allow listing while validator client is running
26
+ args.force = true;
27
+
28
const signers = await getSignersFromArgs(args, network, {logger: console, signal: new AbortController().signal});
29
30
logSigners(console, signers);
0 commit comments