Ignore coinbase tx in block health calculation

This commit is contained in:
Mononaut 2023-02-21 22:01:30 -06:00
parent 55f34f9b19
commit 39cf85d025

View File

@ -119,7 +119,8 @@ class Audit {
}
const numCensored = Object.keys(isCensored).length;
const score = matches.length > 0 ? (matches.length / (matches.length + numCensored)) : 0;
const numMatches = matches.length - 1; // adjust for coinbase tx
const score = numMatches > 0 ? (numMatches / (numMatches + numCensored)) : 0;
return {
censored: Object.keys(isCensored),