From 7cc689448f69dac1efdb5fb956319754a96ddd49 Mon Sep 17 00:00:00 2001 From: HuangYi Date: Fri, 10 Dec 2021 17:34:40 +0800 Subject: [PATCH 1/2] populate ctx.ConsensusParams for begin blockers Closes: #10724 changelog and unit test revert change in getContextForTx --- CHANGELOG.md | 1 + baseapp/abci.go | 3 +++ baseapp/baseapp_test.go | 46 +++++++++++++++++++++++++++++++++++++++++ 3 files changed, 50 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index fd7058d72e04..63625f158d0d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -191,6 +191,7 @@ Ref: https://keepachangelog.com/en/1.0.0/ * (x/bank) [\#9890] (https://github.com/cosmos/cosmos-sdk/pull/9890) Remove duplicate denom from denom metadata key. * (x/upgrade) [\#10189](https://github.com/cosmos/cosmos-sdk/issues/10189) Removed potential sources of non-determinism in upgrades * [\#10393](https://github.com/cosmos/cosmos-sdk/pull/10422) Add `MinCommissionRate` param to `x/staking` module. +* [#10725](https://github.com/cosmos/cosmos-sdk/pull/10725) populate `ctx.ConsensusParams` for begin/end blockers. ### Deprecated diff --git a/baseapp/abci.go b/baseapp/abci.go index 398673bd1662..3ce47a050f49 100644 --- a/baseapp/abci.go +++ b/baseapp/abci.go @@ -176,6 +176,9 @@ func (app *BaseApp) BeginBlock(req abci.RequestBeginBlock) (res abci.ResponseBeg WithBlockGasMeter(gasMeter). WithHeaderHash(req.Hash) + app.deliverState.ctx = app.deliverState.ctx. + WithConsensusParams(app.GetConsensusParams(app.deliverState.ctx)) + // we also set block gas meter to checkState in case the application needs to // verify gas consumption during (Re)CheckTx if app.checkState != nil { diff --git a/baseapp/baseapp_test.go b/baseapp/baseapp_test.go index 0bc643fd29ab..85e9933e9320 100644 --- a/baseapp/baseapp_test.go +++ b/baseapp/baseapp_test.go @@ -2,6 +2,7 @@ package baseapp_test import ( "bytes" + "context" "encoding/binary" "encoding/json" "fmt" @@ -239,6 +240,51 @@ func TestMountStores(t *testing.T) { require.NotNil(t, store2) } +type MockTxHandler struct { + T *testing.T +} + +func (th MockTxHandler) CheckTx(goCtx context.Context, req tx.Request, checkReq tx.RequestCheckTx) (tx.Response, tx.ResponseCheckTx, error) { + ctx := sdk.UnwrapSDKContext(goCtx) + require.NotNil(th.T, ctx.ConsensusParams()) + return tx.Response{}, tx.ResponseCheckTx{}, nil +} + +func (th MockTxHandler) DeliverTx(goCtx context.Context, req tx.Request) (tx.Response, error) { + ctx := sdk.UnwrapSDKContext(goCtx) + require.NotNil(th.T, ctx.ConsensusParams()) + return tx.Response{}, nil +} + +func (th MockTxHandler) SimulateTx(goCtx context.Context, req tx.Request) (tx.Response, error) { + ctx := sdk.UnwrapSDKContext(goCtx) + require.NotNil(th.T, ctx.ConsensusParams()) + return tx.Response{}, nil +} + +func TestConsensusParamsNotNil(t *testing.T) { + app := setupBaseApp(t, func(app *baseapp.BaseApp) { + app.SetBeginBlocker(func(ctx sdk.Context, req abci.RequestBeginBlock) abci.ResponseBeginBlock { + require.NotNil(t, ctx.ConsensusParams()) + return abci.ResponseBeginBlock{} + }) + }, func(app *baseapp.BaseApp) { + app.SetEndBlocker(func(ctx sdk.Context, req abci.RequestEndBlock) abci.ResponseEndBlock { + require.NotNil(t, ctx.ConsensusParams()) + return abci.ResponseEndBlock{} + }) + }, func(app *baseapp.BaseApp) { + app.SetTxHandler(MockTxHandler{T: t}) + }) + + header := tmproto.Header{Height: 1} + app.BeginBlock(abci.RequestBeginBlock{Header: header}) + app.EndBlock(abci.RequestEndBlock{Height: header.Height}) + app.CheckTx(abci.RequestCheckTx{}) + app.DeliverTx(abci.RequestDeliverTx{}) + app.Simulate([]byte{}) +} + // Test that we can make commits and then reload old versions. // Test that LoadLatestVersion actually does. func TestLoadVersion(t *testing.T) { From b7817051b86b0ea06ac2f069bcc1c24094a06926 Mon Sep 17 00:00:00 2001 From: HuangYi Date: Tue, 14 Dec 2021 10:18:44 +0800 Subject: [PATCH 2/2] chain the WithConsensusParams call --- baseapp/abci.go | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/baseapp/abci.go b/baseapp/abci.go index 3ce47a050f49..6f354ba51c73 100644 --- a/baseapp/abci.go +++ b/baseapp/abci.go @@ -174,9 +174,7 @@ func (app *BaseApp) BeginBlock(req abci.RequestBeginBlock) (res abci.ResponseBeg app.deliverState.ctx = app.deliverState.ctx. WithBlockGasMeter(gasMeter). - WithHeaderHash(req.Hash) - - app.deliverState.ctx = app.deliverState.ctx. + WithHeaderHash(req.Hash). WithConsensusParams(app.GetConsensusParams(app.deliverState.ctx)) // we also set block gas meter to checkState in case the application needs to