Skip to content

Commit

Permalink
use eth_secp dy default again on osd chain
Browse files Browse the repository at this point in the history
  • Loading branch information
MalteHerrmann committed Oct 9, 2024
1 parent c5b0b6e commit 7ca6146
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .clconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,4 +49,4 @@
},
"legacy_version": null,
"target_repo": "https://github.com/evmos/os"
}
}
5 changes: 2 additions & 3 deletions example_chain/osd/cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ import (
"github.com/cosmos/cosmos-sdk/client/pruning"
"github.com/cosmos/cosmos-sdk/client/rpc"
"github.com/cosmos/cosmos-sdk/client/snapshot"
cosmoshd "github.com/cosmos/cosmos-sdk/crypto/hd"
sdkserver "github.com/cosmos/cosmos-sdk/server"
serverconfig "github.com/cosmos/cosmos-sdk/server/config"
servertypes "github.com/cosmos/cosmos-sdk/server/types"
Expand All @@ -39,6 +38,7 @@ import (
genutilcli "github.com/cosmos/cosmos-sdk/x/genutil/client/cli"
evmoscmd "github.com/evmos/os/client"
evmoscmdconfig "github.com/evmos/os/cmd/config"
"github.com/evmos/os/crypto/hd"
evmoskeyring "github.com/evmos/os/crypto/keyring"
"github.com/evmos/os/example_chain"
cmdcfg "github.com/evmos/os/example_chain/osd/config"
Expand Down Expand Up @@ -231,8 +231,7 @@ func initRootCmd(rootCmd *cobra.Command, osApp *example_chain.ExampleChain) {

// add evmOS key commands
rootCmd.AddCommand(
// evmoscmd.KeyCommands(example_chain.DefaultNodeHome, string(hd.EthSecp256k1Type)),
evmoscmd.KeyCommands(example_chain.DefaultNodeHome, string(cosmoshd.Secp256k1Type)),
evmoscmd.KeyCommands(example_chain.DefaultNodeHome, string(hd.EthSecp256k1Type)),
)

// add keybase, auxiliary RPC, query, genesis, and tx child commands
Expand Down

0 comments on commit 7ca6146

Please sign in to comment.