remove temporary limit on num block transactions

This commit is contained in:
Jae Kwon
2015-10-12 09:42:53 -07:00
parent 13e25ef164
commit 0a28cabd57
-4
View File
@@ -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,