From a63e28a701d145969a2efda608263fbd8b5a7b5e Mon Sep 17 00:00:00 2001 From: Solovyov1796 Date: Fri, 10 May 2024 09:58:33 +0800 Subject: [PATCH] remove the EthSecp256k1 from cosmos --- cmd/0gchaind/root.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/0gchaind/root.go b/cmd/0gchaind/root.go index 07e589fe..6c530617 100644 --- a/cmd/0gchaind/root.go +++ b/cmd/0gchaind/root.go @@ -34,8 +34,8 @@ import ( func customKeyringOptions() keyring.Option { return func(options *keyring.Options) { - options.SupportedAlgos = append(hd.SupportedAlgorithms, vrf.VrfAlgo) - options.SupportedAlgosLedger = append(hd.SupportedAlgorithmsLedger, vrf.VrfAlgo) + options.SupportedAlgos = append(options.SupportedAlgos, vrf.VrfAlgo, hd.EthSecp256k1) + options.SupportedAlgosLedger = append(options.SupportedAlgosLedger, vrf.VrfAlgo, hd.EthSecp256k1) } }