chore: print validator when listing checkpoint indices (#4550)

### Description

Minor addition to make it easy to figure out which validator is behind
(from the multisig consts mapping)
pull/4553/head
Nam Chu Hoai 2 months ago committed by GitHub
parent a78c95cad8
commit b9b3aaec10
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 3
      typescript/infra/scripts/list-validator-checkpoint-indices.ts

@ -39,11 +39,12 @@ async function main() {
chain,
identifier,
index,
validator,
};
},
);
console.table(indices, ['chain', 'index', 'identifier']);
console.table(indices, ['chain', 'index', 'identifier', 'validator']);
}
main().catch(console.error);

Loading…
Cancel
Save