Skip to content

Commit

Permalink
Use possibleSignal as an alternative way to identify a miner
Browse files Browse the repository at this point in the history
In case there's not enough info in our miners lists to identify
the miner of a given block, use possibleSignal to categorize the block
  • Loading branch information
sickpig committed Sep 19, 2022
1 parent b6e6f6d commit 4b5b926
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions app/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -417,6 +417,9 @@ function getMinerFromCoinbaseTx(tx) {
}
}
}
if ((!minerInfo.indentiedBy) && (minerInfo.possibleSignal)) {
minerInfo.name = minerInfo.possibleSignal;
}
return minerInfo;
}

Expand Down

0 comments on commit 4b5b926

Please sign in to comment.