This commit is contained in:
@@ -56,6 +56,7 @@ Ref: https://keepachangelog.com/en/1.0.0/
|
||||
* (server) [#19884](https://github.com/cosmos/cosmos-sdk/pull/19884) Add start customizability to start command options.
|
||||
* (x/gov) [#19853](https://github.com/cosmos/cosmos-sdk/pull/19853) Emit `depositor` in `EventTypeProposalDeposit`.
|
||||
* (x/gov) [#19844](https://github.com/cosmos/cosmos-sdk/pull/19844) Emit the proposer of governance proposals.
|
||||
* (baseapp) [#19616](https://github.com/cosmos/cosmos-sdk/pull/19616) Don't share gas meter in tx execution.
|
||||
|
||||
## Bug Fixes
|
||||
|
||||
|
||||
+2
-1
@@ -665,7 +665,8 @@ func (app *BaseApp) getContextForTx(mode execMode, txBytes []byte) sdk.Context {
|
||||
panic(fmt.Sprintf("state is nil for mode %v", mode))
|
||||
}
|
||||
ctx := modeState.Context().
|
||||
WithTxBytes(txBytes)
|
||||
WithTxBytes(txBytes).
|
||||
WithGasMeter(storetypes.NewInfiniteGasMeter())
|
||||
// WithVoteInfos(app.voteInfos) // TODO: identify if this is needed
|
||||
|
||||
ctx = ctx.WithConsensusParams(app.GetConsensusParams(ctx))
|
||||
|
||||
Reference in New Issue
Block a user