diff --git a/x/distribution/abci.go b/x/distribution/abci.go index 01f367212656..be7751ff3206 100644 --- a/x/distribution/abci.go +++ b/x/distribution/abci.go @@ -23,8 +23,7 @@ func BeginBlocker(ctx sdk.Context, req abci.RequestBeginBlock, k keeper.Keeper) blockHeight := ctx.BlockHeight() // only allocate rewards if the block height is greater than 1 // and for every multiple of 10 blocks for performance reasons. - // We special case blockHeight 2 to allow test cases to still be valid. - if (blockHeight > 1 && blockHeight%BlockMultipleToDistributeRewards == 0) || blockHeight == 2 { + if blockHeight > 1 && blockHeight%BlockMultipleToDistributeRewards == 0 { // determine the total power signing the block var previousTotalPower int64 for _, voteInfo := range req.LastCommitInfo.GetVotes() {