Skip to content
This repository has been archived by the owner on Apr 4, 2024. It is now read-only.

Commit

Permalink
fix(rpc): fix panic on breaking EVM and feemarket params (backport #1188
Browse files Browse the repository at this point in the history
) (#1193)

* fix(rpc): fix panic on breaking EVM and feemarket params (#1188)

* release: v0.17.0 changelog (#1153)

* release: v0.17.0 changelog

* rm newline

* update link

* fix(rpc): fix panic on breaking EVM and feemarket params

* changelog

* fix gosec

(cherry picked from commit 73c9ea2)

# Conflicts:
#	.mergify.yml
#	CHANGELOG.md

* Update .mergify.yml

* fix

Co-authored-by: Federico Kunze Küllmer <[email protected]>
  • Loading branch information
mergify[bot] and fedekunze authored Jul 19, 2022
1 parent 922c273 commit f740e13
Show file tree
Hide file tree
Showing 5 changed files with 38 additions and 7 deletions.
15 changes: 15 additions & 0 deletions .mergify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,21 @@ pull_request_rules:
commit_message_template: |
{{ title }} (#{{ number }})
{{ body }}
- name: backport patches to main branch
conditions:
- label=backport/main
actions:
backport:
branches:
- main
- name: backport patches to v0.17.x branch
conditions:
- base=main
- label=backport/0.17.x
actions:
backport:
branches:
- release/v0.17.x
- name: backport patches to v0.16.x branch
conditions:
- base=main
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,12 @@ Ref: https://keepachangelog.com/en/1.0.0/

# Changelog

## Unreleased

### Bug Fixes

* (rpc) [\#1190](https://github.com/evmos/ethermint/issues/1190) Fix `UnmarshalJSON` panic of breaking EVM and fee market `Params`.

## [v0.17.1] - 2022-07-13

### Improvements
Expand Down
11 changes: 6 additions & 5 deletions server/json_rpc.go
Original file line number Diff line number Diff line change
Expand Up @@ -61,11 +61,12 @@ func StartJSONRPC(ctx *server.Context, clientCtx client.Context, tmRPCAddr, tmEn
}

httpSrv := &http.Server{
Addr: config.JSONRPC.Address,
Handler: handlerWithCors.Handler(r),
ReadTimeout: config.JSONRPC.HTTPTimeout,
WriteTimeout: config.JSONRPC.HTTPTimeout,
IdleTimeout: config.JSONRPC.HTTPIdleTimeout,
Addr: config.JSONRPC.Address,
Handler: handlerWithCors.Handler(r),
ReadHeaderTimeout: config.JSONRPC.HTTPTimeout,
ReadTimeout: config.JSONRPC.HTTPTimeout,
WriteTimeout: config.JSONRPC.HTTPTimeout,
IdleTimeout: config.JSONRPC.HTTPIdleTimeout,
}
httpSrvDone := make(chan struct{}, 1)

Expand Down
7 changes: 6 additions & 1 deletion x/evm/keeper/params.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,12 @@ import (

// GetParams returns the total set of evm parameters.
func (k Keeper) GetParams(ctx sdk.Context) (params types.Params) {
k.paramSpace.GetParamSet(ctx, &params)
// TODO: update once https://github.com/cosmos/cosmos-sdk/pull/12615 is merged
// and released
for _, pair := range params.ParamSetPairs() {
k.paramSpace.GetIfExists(ctx, pair.Key, pair.Value)
}

return params
}

Expand Down
6 changes: 5 additions & 1 deletion x/feemarket/keeper/params.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,11 @@ import (

// GetParams returns the total set of fee market parameters.
func (k Keeper) GetParams(ctx sdk.Context) (params types.Params) {
k.paramSpace.GetParamSet(ctx, &params)
// TODO: update once https://github.com/cosmos/cosmos-sdk/pull/12615 is merged
// and released
for _, pair := range params.ParamSetPairs() {
k.paramSpace.GetIfExists(ctx, pair.Key, pair.Value)
}
return params
}

Expand Down

0 comments on commit f740e13

Please sign in to comment.