Add avg mining pool block mathrate in pools stats API

This commit is contained in:
nymkappa
2023-02-20 17:31:07 +09:00
parent 48e919aff9
commit 6b1c1e7cda
3 changed files with 14 additions and 3 deletions

View File

@@ -100,6 +100,7 @@ class Mining {
rank: rank++,
emptyBlocks: emptyBlocksCount.length > 0 ? emptyBlocksCount[0]['count'] : 0,
slug: poolInfo.slug,
avgMatchRate: Math.round(100 * poolInfo.avgMatchRate) / 100,
};
poolsStats.push(poolStat);
});