Skip to content

Commit da673cb

Browse files
committed
fix: unnits
1 parent 89d2a6a commit da673cb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

blockchain_job.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ def get_latest_info():
6363
currentShaHashRate = int(str(data['currentSha3xHashRate']).replace(',', ''))
6464
currentMoneroHashRate = int(str(data['currentMoneroRandomxHashRate']).replace(',', ''))
6565
currentTariRXHashRate = int(str(data['currentTariRandomxHashRate']).replace(',', ''))
66-
currentCuckarooHashRate = float(data['currentCuckarooHashRate'])
66+
currentCuckarooHashRate = float(data['currentCuckarooHashRate']) * 42
6767
return block_height, currentShaHashRate, currentMoneroHashRate, currentTariRXHashRate, currentCuckarooHashRate
6868
else:
6969
raise Exception(f"Failed to fetch data: {response.status_code}")

0 commit comments

Comments
 (0)