Skip to content

Commit

Permalink
chore: fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
stringhandler committed Sep 18, 2024
1 parent 49243c5 commit 08ee1e4
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -76,11 +76,11 @@ const P2PoolStats = () => {
labels={[
{
labelText: 'SHA-3',
labelValue: (p2poolSha3HashRate ? p2poolSha3HashRate / 1_000_000.0 : 0) + ' MH/s',
labelValue: (p2poolSha3HashRate ? p2poolSha3HashRate / BigInt(1_000_000) : 0) + ' MH/s',
},
{
labelText: 'RandomX',
labelValue: (p2poolRandomxHashRate ? p2poolRandomxHashRate / 1_000_000.0 : 0) + ' kH/s',
labelValue: (p2poolRandomxHashRate ? p2poolRandomxHashRate / BigInt(1_000_000) : 0) + ' kH/s',
},
]}
/>
Expand Down

0 comments on commit 08ee1e4

Please sign in to comment.