remove the EthSecp256k1 from cosmos

This commit is contained in:
Solovyov1796 2024-05-10 09:58:33 +08:00 committed by 0g-wh
parent 986172d3a7
commit 154dd509ee

View File

@ -33,8 +33,8 @@ import (
func customKeyringOptions() keyring.Option { func customKeyringOptions() keyring.Option {
return func(options *keyring.Options) { return func(options *keyring.Options) {
options.SupportedAlgos = append(hd.SupportedAlgorithms, vrf.VrfAlgo) options.SupportedAlgos = append(options.SupportedAlgos, vrf.VrfAlgo, hd.EthSecp256k1)
options.SupportedAlgosLedger = append(hd.SupportedAlgorithmsLedger, vrf.VrfAlgo) options.SupportedAlgosLedger = append(options.SupportedAlgosLedger, vrf.VrfAlgo, hd.EthSecp256k1)
} }
} }