Instant mining pool identification from recent blocks.

refs #59
This commit is contained in:
softsimon
2020-05-10 00:54:07 +07:00
parent 0753b11840
commit c08a4c8424
5 changed files with 5 additions and 1 deletions

View File

@@ -75,6 +75,7 @@ class Blocks {
transactions.sort((a, b) => b.feePerVsize - a.feePerVsize);
block.medianFee = transactions.length > 1 ? this.median(transactions.map((tx) => tx.feePerVsize)) : 0;
block.feeRange = transactions.length > 1 ? this.getFeesInRange(transactions, 8) : [0, 0];
block.coinbaseTx = transactions[0];
this.blocks.push(block);
if (this.blocks.length > config.KEEP_BLOCK_AMOUNT) {