From d688cf0e4788822d121b6aad6fd70c70525a416c Mon Sep 17 00:00:00 2001 From: Thane Thomson Date: Mon, 9 May 2022 07:05:33 -0400 Subject: [PATCH] state: Remove unnecessary comment Signed-off-by: Thane Thomson --- internal/state/execution.go | 1 - 1 file changed, 1 deletion(-) diff --git a/internal/state/execution.go b/internal/state/execution.go index 2ca2be6ad..191ed0dbd 100644 --- a/internal/state/execution.go +++ b/internal/state/execution.go @@ -422,7 +422,6 @@ func buildLastCommitInfo(block *types.Block, store Store, initialHeight int64) a // For heights below the initial height, for which we do not have the // required data, it returns an empty record. func buildLastExtendedCommitInfo(ec *types.ExtendedCommit, store Store, initialHeight int64) abci.ExtendedCommitInfo { - // We assume the current height is ec.Height + 1. if ec.Height < initialHeight { // There are no extended commits for heights below the initial height. return abci.ExtendedCommitInfo{}