diff --git a/.clconfig.json b/.clconfig.json index ed09764..ddfadb3 100644 --- a/.clconfig.json +++ b/.clconfig.json @@ -49,4 +49,4 @@ }, "legacy_version": null, "target_repo": "https://github.com/evmos/os" -} +} \ No newline at end of file diff --git a/example_chain/osd/cmd/root.go b/example_chain/osd/cmd/root.go index b081ca1..7e04dcc 100644 --- a/example_chain/osd/cmd/root.go +++ b/example_chain/osd/cmd/root.go @@ -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" @@ -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" @@ -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