Skip to content

Commit

Permalink
updated batch_difficulty.py for new beta difficulty
Browse files Browse the repository at this point in the history
  • Loading branch information
Srayman committed Sep 16, 2019
1 parent 6e6682f commit cc2ece5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion batch_difficulty.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@


def work_multiplier(difficulty: int):
return float((1 << 64) - 0xffffffc000000000) / float((1 << 64) - difficulty)
return float((1 << 64) - 0xfffffc0000000000) / float((1 << 64) - difficulty)


def work_value(work: str, block_hash: str):
Expand Down

0 comments on commit cc2ece5

Please sign in to comment.