From cc2ece53d1240216ed109321915ecba45be731ea Mon Sep 17 00:00:00 2001 From: Srayman Date: Sun, 15 Sep 2019 21:04:36 -0400 Subject: [PATCH] updated batch_difficulty.py for new beta difficulty --- batch_difficulty.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/batch_difficulty.py b/batch_difficulty.py index 91d1b1b..0b8a473 100644 --- a/batch_difficulty.py +++ b/batch_difficulty.py @@ -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):