From 0a7f0dabf5d77664bf91dc643ec12e5fd3a86629 Mon Sep 17 00:00:00 2001 From: Kevin Peters Date: Tue, 17 Jan 2023 16:25:39 +0000 Subject: [PATCH] node: New default current guardian set index (3) --- node/cmd/guardiand/admintemplate.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node/cmd/guardiand/admintemplate.go b/node/cmd/guardiand/admintemplate.go index 16e8f3680..2a4b669fb 100644 --- a/node/cmd/guardiand/admintemplate.go +++ b/node/cmd/guardiand/admintemplate.go @@ -43,7 +43,7 @@ func init() { shutdownGuardianKey = authProofFlagSet.String("guardian-key", "", "Guardian key to sign proof. File path or hex string") shutdownPubKey = authProofFlagSet.String("proof-pub-key", "", "Public key to encode in proof") - templateGuardianIndex = TemplateCmd.PersistentFlags().Int("idx", 2, "Default current guardian set index") + templateGuardianIndex = TemplateCmd.PersistentFlags().Int("idx", 3, "Default current guardian set index") setUpdateNumGuardians = AdminClientGuardianSetTemplateCmd.Flags().Int("num", 1, "Number of devnet guardians in example file") TemplateCmd.AddCommand(AdminClientGuardianSetTemplateCmd)