From 0a28cabd57c826a2cb875f4dc99639f923863e4e Mon Sep 17 00:00:00 2001 From: Jae Kwon Date: Mon, 12 Oct 2015 09:42:53 -0700 Subject: [PATCH] remove temporary limit on num block transactions --- consensus/state.go | 4 ---- 1 file changed, 4 deletions(-) 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,