From 39e64d7935073a71f4a141d93d99c6d65bcf71d2 Mon Sep 17 00:00:00 2001 From: Omri Date: Sun, 12 Feb 2023 08:41:32 +0100 Subject: [PATCH] Removed redundant info from log message when maxbytes=0 (#239) --- state/executor.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/state/executor.go b/state/executor.go index 63004813f..8971def3d 100644 --- a/state/executor.go +++ b/state/executor.go @@ -151,7 +151,7 @@ func (e *BlockExecutor) UpdateStateFromResponses(resp *tmstate.ABCIResponses, st e.logger.Debug("updates to validators", "updates", tmtypes.ValidatorListString(validatorUpdates)) } if state.ConsensusParams.Block.MaxBytes == 0 { - e.logger.Error("maxBytes=0", "state.ConsensusParams.Block", state.ConsensusParams.Block, "block", block) + e.logger.Error("maxBytes=0", "state.ConsensusParams.Block", state.ConsensusParams.Block) } state, err = e.updateState(state, block, resp, validatorUpdates)