keep the EthSecp256k1 from cosmos for compatible

This commit is contained in:
Solovyov1796 2024-06-12 01:47:42 +08:00
parent 7d4fbb4c3e
commit 234efdb89f

View File

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