Skip to content

Commit

Permalink
chore (deps): bump Ethermint to v0.21.0-rc2 (#1269)
Browse files Browse the repository at this point in the history
* bump Ethermint to v0.21.0-rc2

* update ethermintserver syntax in root.go

* lint

* update based on review comments

Co-authored-by: Federico Kunze Küllmer <31522760+fedekunze@users.noreply.github.com>
Co-authored-by: tom <tomasguerraalda@hotmail.com>
  • Loading branch information
3 people committed Jan 23, 2023
1 parent 127ac76 commit 7956f94
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
2 changes: 1 addition & 1 deletion app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -1110,7 +1110,7 @@ func initParamsKeeper(
paramsKeeper.Subspace(ibchost.ModuleName)
paramsKeeper.Subspace(icahosttypes.SubModuleName)
// ethermint subspaces
paramsKeeper.Subspace(evmtypes.ModuleName).WithKeyTable(evmtypes.ParamKeyTable())
paramsKeeper.Subspace(evmtypes.ModuleName).WithKeyTable(evmtypes.ParamKeyTable()) //nolint: staticcheck
paramsKeeper.Subspace(feemarkettypes.ModuleName).WithKeyTable(feemarkettypes.ParamKeyTable())
// evmos subspaces
paramsKeeper.Subspace(inflationtypes.ModuleName)
Expand Down
7 changes: 6 additions & 1 deletion cmd/evmosd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,12 @@ func NewRootCmd() (*cobra.Command, params.EncodingConfig) {
pruning.PruningCmd(a.newApp),
)

ethermintserver.AddCommands(rootCmd, app.DefaultNodeHome, a.newApp, a.appExport, addModuleInitFlags)
ethermintserver.AddCommands(
rootCmd,
ethermintserver.NewDefaultStartOptions(a.newApp, app.DefaultNodeHome),
a.appExport,
addModuleInitFlags,
)

// add keybase, auxiliary RPC, query, and tx child commands
rootCmd.AddCommand(
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ require (
github.com/cosmos/gogoproto v1.4.3
github.com/cosmos/ibc-go/v6 v6.1.0
github.com/ethereum/go-ethereum v1.10.26
github.com/evmos/ethermint v0.21.0-rc1
github.com/evmos/ethermint v0.21.0-rc2
github.com/evmos/evmos-ledger-go v0.2.1
github.com/gogo/protobuf v1.3.3
github.com/golang/protobuf v1.5.2
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -320,8 +320,8 @@ github.com/envoyproxy/go-control-plane v0.9.9-0.20201210154907-fd9021fe5dad/go.m
github.com/envoyproxy/protoc-gen-validate v0.1.0/go.mod h1:iSmxcyjqTsJpI2R4NaDN7+kN2VEUnK/pcBlmesArF7c=
github.com/evmos/cosmos-sdk v0.46.7-ledger h1:IuhUWAN5BgZlHxT3MbfHF9ImKSPYmqe+cNQ1/ycIxR0=
github.com/evmos/cosmos-sdk v0.46.7-ledger/go.mod h1:fqKqz39U5IlEFb4nbQ72951myztsDzFKKDtffYJ63nk=
github.com/evmos/ethermint v0.21.0-rc1 h1:HSGGxCiG2pwinBFEhVWb7mLZT9PO17JIFimdP20HBXI=
github.com/evmos/ethermint v0.21.0-rc1/go.mod h1:JQAVa5MTxOqD446eOo8nr8G5gQC7qltvI3vmGL/URu8=
github.com/evmos/ethermint v0.21.0-rc2 h1:K6GKKn9mlij8Vhd0q33EKKFhABb9O3rfNfiYA4b17/Q=
github.com/evmos/ethermint v0.21.0-rc2/go.mod h1:KJwIgGVkT8l/rREHvBV7c1/DhyoHzeAiJKvwrlK3IDI=
github.com/evmos/evmos-ledger-go v0.2.1 h1:bUXA6/frc7FvN+z6GTaOcnprFCshUGh7Hd1mFmRe39s=
github.com/evmos/evmos-ledger-go v0.2.1/go.mod h1:7Go/1+QmM0xw5VYK3nOUfluNFL4iy5BWxDwh1x3bUFs=
github.com/evmos/go-ethereum v1.10.26 h1:7wlczxUWTwhzJJUyh3Kkqt3/5fdSJzh8c42boc9GuII=
Expand Down

0 comments on commit 7956f94

Please sign in to comment.