From d102b4881e9f639d4ed4f5e231a9c9f0cf860a76 Mon Sep 17 00:00:00 2001 From: William Banfield Date: Tue, 8 Mar 2022 16:33:53 -0500 Subject: [PATCH] maxDataBytes remove comment --- internal/state/execution.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/internal/state/execution.go b/internal/state/execution.go index 0cfbc8e0e..9016965f5 100644 --- a/internal/state/execution.go +++ b/internal/state/execution.go @@ -124,8 +124,7 @@ func (blockExec *BlockExecutor) CreateProposalBlock( Txs: block.Txs.ToSliceOfBytes(), LocalLastCommit: extendedCommitInfo(localLastCommit), ByzantineValidators: block.Evidence.ToABCI(), - // TODO:(wbanfield) ensure that this maxBytes is the correct value to pass through. - MaxTxBytes: maxDataBytes, + MaxTxBytes: maxDataBytes, }, ) if err != nil {