Co-authored-by: swelf19 <62722506+swelf19@users.noreply.github.com> Co-authored-by: Julien Robert <julien@rbrt.fr>
This commit is contained in:
parent
95c008392a
commit
8ab33f58d7
@ -45,6 +45,7 @@ Ref: https://keepachangelog.com/en/1.0.0/
|
||||
### Bug Fixes
|
||||
|
||||
* (x/gov) [#17873](https://github.com/cosmos/cosmos-sdk/pull/17873) Fail any inactive and active proposals that cannot be decoded.
|
||||
* (x/slashing) [#18016](https://github.com/cosmos/cosmos-sdk/pull/18016) Fixed builder function for missed blocks key (`validatorMissedBlockBitArrayPrefixKey`) in slashing/migration/v4
|
||||
|
||||
### Client Breaking Changes
|
||||
|
||||
|
||||
@ -28,7 +28,7 @@ func ValidatorSigningInfoAddress(key []byte) (v sdk.ConsAddress) {
|
||||
}
|
||||
|
||||
func validatorMissedBlockBitArrayPrefixKey(v sdk.ConsAddress) []byte {
|
||||
return append(validatorMissedBlockBitArrayKeyPrefix, v.Bytes()...)
|
||||
return append(validatorMissedBlockBitArrayKeyPrefix, address.MustLengthPrefix(v.Bytes())...)
|
||||
}
|
||||
|
||||
func ValidatorMissedBlockBitArrayKey(v sdk.ConsAddress, i int64) []byte {
|
||||
|
||||
@ -41,10 +41,6 @@ func TestMigrate(t *testing.T) {
|
||||
err := v4.Migrate(ctx, cdc, store, params)
|
||||
require.NoError(t, err)
|
||||
|
||||
// ensure old entries no longer exist and new bitmap chunk entries exist
|
||||
entries := v4.GetValidatorMissedBlocks(ctx, cdc, store, consAddr, params)
|
||||
require.Empty(t, entries)
|
||||
|
||||
for i := int64(0); i < params.SignedBlocksWindow; i++ {
|
||||
chunkIndex := i / v4.MissedBlockBitmapChunkSize
|
||||
chunk := store.Get(v4.ValidatorMissedBlockBitmapKey(consAddr, chunkIndex))
|
||||
|
||||
Loading…
Reference in New Issue
Block a user