chore!: remove unused KeyPowerReduction var (#10248)
* remove unused KeyPowerReduction var from x/staking * add changelog
This commit is contained in:
parent
e9390dfa4c
commit
548c9868bf
|
@ -85,6 +85,7 @@ Ref: https://keepachangelog.com/en/1.0.0/
|
||||||
* [\#9432](https://github.com/cosmos/cosmos-sdk/pull/9432) `ConsensusParamsKeyTable` moved from `params/keeper` to `params/types`
|
* [\#9432](https://github.com/cosmos/cosmos-sdk/pull/9432) `ConsensusParamsKeyTable` moved from `params/keeper` to `params/types`
|
||||||
* [\#9576](https://github.com/cosmos/cosmos-sdk/pull/9576) Add debug error message to `sdkerrors.QueryResult` when enabled
|
* [\#9576](https://github.com/cosmos/cosmos-sdk/pull/9576) Add debug error message to `sdkerrors.QueryResult` when enabled
|
||||||
* [\#9650](https://github.com/cosmos/cosmos-sdk/pull/9650) Removed deprecated message handler implementation from the SDK modules.
|
* [\#9650](https://github.com/cosmos/cosmos-sdk/pull/9650) Removed deprecated message handler implementation from the SDK modules.
|
||||||
|
* [\#10248](https://github.com/cosmos/cosmos-sdk/pull/10248) Remove unused `KeyPowerReduction` variable from x/staking types.
|
||||||
* (x/bank) [\#9832] (https://github.com/cosmos/cosmos-sdk/pull/9832) `AddressFromBalancesStore` renamed to `AddressAndDenomFromBalancesStore`.
|
* (x/bank) [\#9832] (https://github.com/cosmos/cosmos-sdk/pull/9832) `AddressFromBalancesStore` renamed to `AddressAndDenomFromBalancesStore`.
|
||||||
* (tests) [\#9938](https://github.com/cosmos/cosmos-sdk/pull/9938) `simapp.Setup` accepts additional `testing.T` argument.
|
* (tests) [\#9938](https://github.com/cosmos/cosmos-sdk/pull/9938) `simapp.Setup` accepts additional `testing.T` argument.
|
||||||
* (baseapp) [\#9920](https://github.com/cosmos/cosmos-sdk/pull/9920) BaseApp `{Check,Deliver,Simulate}Tx` methods are now replaced by a middleware stack.
|
* (baseapp) [\#9920](https://github.com/cosmos/cosmos-sdk/pull/9920) BaseApp `{Check,Deliver,Simulate}Tx` methods are now replaced by a middleware stack.
|
||||||
|
|
|
@ -38,7 +38,6 @@ var (
|
||||||
KeyMaxEntries = []byte("MaxEntries")
|
KeyMaxEntries = []byte("MaxEntries")
|
||||||
KeyBondDenom = []byte("BondDenom")
|
KeyBondDenom = []byte("BondDenom")
|
||||||
KeyHistoricalEntries = []byte("HistoricalEntries")
|
KeyHistoricalEntries = []byte("HistoricalEntries")
|
||||||
KeyPowerReduction = []byte("PowerReduction")
|
|
||||||
)
|
)
|
||||||
|
|
||||||
var _ paramtypes.ParamSet = (*Params)(nil)
|
var _ paramtypes.ParamSet = (*Params)(nil)
|
||||||
|
|
Loading…
Reference in New Issue