You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* (baseapp) [#17251](https://github.com/cosmos/cosmos-sdk/pull/17251) VerifyVoteExtensions and ExtendVote initialize their own contexts/states, allowing VerifyVoteExtensions being called without ExtendVote.
54
55
* (x/auth) [#17209](https://github.com/cosmos/cosmos-sdk/pull/17209) Internal error on AccountInfo when account's public key is not set.
55
56
* (baseapp) [#17159](https://github.com/cosmos/cosmos-sdk/pull/17159) Validators can propose blocks that exceed the gas limit.
56
57
* (x/group) [#17146](https://github.com/cosmos/cosmos-sdk/pull/17146) Rename x/group legacy ORM package's error codespace from "orm" to "legacy_orm", preventing collisions with ORM's error codespace "orm".
Copy file name to clipboardexpand all lines: docs/docs/core/00-baseapp.md
+1-2
Original file line number
Diff line number
Diff line change
@@ -90,7 +90,6 @@ Then, parameters used to define [volatile states](#state-updates) (i.e. cached s
90
90
[`Commit`](#commit) and gets re-initialized on `FinalizeBlock`.
91
91
*`processProposalState`: This state is updated during [`ProcessProposal`](#process-proposal).
92
92
*`prepareProposalState`: This state is updated during [`PrepareProposal`](#prepare-proposal).
93
-
*`voteExtensionState`: This state is updated during [`ExtendVote`](#extendvote) & [`VerifyVoteExtension`](#verifyvoteextension).
94
93
95
94
Finally, a few more important parameters:
96
95
@@ -130,7 +129,7 @@ Naturally, developers can add additional `options` based on their application's
130
129
## State Updates
131
130
132
131
The `BaseApp` maintains four primary volatile states and a root or main state. The main state
133
-
is the canonical state of the application and the volatile states, `checkState`, `prepareProposalState`, `processProposalState`, `voteExtensionState` and `finalizeBlockState`
132
+
is the canonical state of the application and the volatile states, `checkState`, `prepareProposalState`, `processProposalState` and `finalizeBlockState`
134
133
are used to handle state transitions in-between the main state made during [`Commit`](#commit).
135
134
136
135
Internally, there is only a single `CommitMultiStore` which we refer to as the main or root state.
0 commit comments