remove the EthSecp256k1 from cosmos

This commit is contained in:
Solovyov1796 2024-05-10 09:58:33 +08:00 committed by Solovyov1796
parent 61ce767c80
commit a63e28a701

View File

@ -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)
}
}