From a39f34bba75314ab8d40be9bf93eaa574ac03ab2 Mon Sep 17 00:00:00 2001 From: Srayman Date: Mon, 18 May 2020 17:05:18 -0400 Subject: [PATCH] updated batch_difficulty.py --- batch_difficulty.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/batch_difficulty.py b/batch_difficulty.py index 0b8a473..f0c2d91 100644 --- a/batch_difficulty.py +++ b/batch_difficulty.py @@ -10,7 +10,7 @@ def work_multiplier(difficulty: int): - return float((1 << 64) - 0xfffffc0000000000) / float((1 << 64) - difficulty) + return float((1 << 64) - 0xfffff80000000000) / float((1 << 64) - difficulty) def work_value(work: str, block_hash: str):