From 45b79201816f0072d197d63704710f3a496cfbd6 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 9232ac8c..52460c2c 100644 --- a/cmd/0gchaind/root.go +++ b/cmd/0gchaind/root.go @@ -35,8 +35,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) } }