From ea6f949b7bb147a7d93d32544da286a00096de15 Mon Sep 17 00:00:00 2001 From: Kartik Bhat Date: Thu, 8 Aug 2024 13:37:51 -0400 Subject: [PATCH] Evidence Max Bytes Update (#1812) --- app/app.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/app.go b/app/app.go index 544562f70b..5643a5c74b 100644 --- a/app/app.go +++ b/app/app.go @@ -1751,7 +1751,7 @@ func (app *App) getFinalizeBlockResponse(appHash []byte, events []abci.Event, tx Evidence: &tmproto.EvidenceParams{ MaxAgeNumBlocks: endBlockResp.ConsensusParamUpdates.Evidence.MaxAgeNumBlocks, MaxAgeDuration: endBlockResp.ConsensusParamUpdates.Evidence.MaxAgeDuration, - MaxBytes: endBlockResp.ConsensusParamUpdates.Block.MaxBytes, + MaxBytes: endBlockResp.ConsensusParamUpdates.Evidence.MaxBytes, }, Validator: &tmproto.ValidatorParams{ PubKeyTypes: endBlockResp.ConsensusParamUpdates.Validator.PubKeyTypes,