Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor(staking): change historicalinfo to contain minimal set of data #17655

Merged
merged 18 commits into from
Sep 19, 2023
Merged
2 changes: 1 addition & 1 deletion proto/cosmos/staking/v1beta1/staking.proto
tac0turtle marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ message HistoricalInfo {
repeated Validator valset = 2 [(gogoproto.nullable) = false, (amino.dont_omitempty) = true];
tac0turtle marked this conversation as resolved.
Show resolved Hide resolved
}

// Hsitorical is a set of minimum values.
// Historical contains a set of minimum values needed for evaluating historical validator sets and blocks.
// It is stored as part of staking module's state, which persists the `n` most
// recent HistoricalInfo
// (`n` is set by the staking module's `historical_entries` parameter).
Expand Down
Loading