diff --git a/consensus/state.go b/consensus/state.go index 41a88e997..a846f530e 100644 --- a/consensus/state.go +++ b/consensus/state.go @@ -657,10 +657,6 @@ func (cs *ConsensusState) createProposalBlock() (block *types.Block, blockParts return } txs := cs.mempoolReactor.Mempool.GetProposalTxs() - MaxTxsPerBlock := 100 // TODO - if len(txs) > MaxTxsPerBlock { - txs = txs[:MaxTxsPerBlock] - } block = &types.Block{ Header: &types.Header{ ChainID: cs.state.ChainID,