From b9b3aaec10bf985873818f0d122407cecbbcd375 Mon Sep 17 00:00:00 2001 From: Nam Chu Hoai Date: Mon, 23 Sep 2024 21:12:02 +0800 Subject: [PATCH] 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) --- typescript/infra/scripts/list-validator-checkpoint-indices.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/typescript/infra/scripts/list-validator-checkpoint-indices.ts b/typescript/infra/scripts/list-validator-checkpoint-indices.ts index f3cfc6c1c..957719725 100644 --- a/typescript/infra/scripts/list-validator-checkpoint-indices.ts +++ b/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);