Use MEMPOOL_BLOCKS_AMOUNT config in the frontend

fixes #852
This commit is contained in:
softsimon
2021-10-05 04:11:13 +04:00
parent 624d55929a
commit 74bd4c5c81
2 changed files with 3 additions and 2 deletions

View File

@@ -75,7 +75,8 @@ class MempoolBlocks {
let blockSize = 0;
let transactions: TransactionExtended[] = [];
transactionsSorted.forEach((tx) => {
if (blockWeight + tx.weight <= config.MEMPOOL.BLOCK_WEIGHT_UNITS || mempoolBlocks.length === config.MEMPOOL.MEMPOOL_BLOCKS_AMOUNT) {
if (blockWeight + tx.weight <= config.MEMPOOL.BLOCK_WEIGHT_UNITS
|| mempoolBlocks.length === config.MEMPOOL.MEMPOOL_BLOCKS_AMOUNT - 1) {
blockWeight += tx.weight;
blockSize += tx.size;
transactions.push(tx);