From 401723f5abac937d881d3b8ec7d33415082b9ab4 Mon Sep 17 00:00:00 2001 From: 0Gitnick Date: Tue, 13 Aug 2019 15:10:58 -0500 Subject: [PATCH] Comment step function --- onionr/onionrproofs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/onionr/onionrproofs.py b/onionr/onionrproofs.py index f4f8b540..860da578 100755 --- a/onionr/onionrproofs.py +++ b/onionr/onionrproofs.py @@ -28,7 +28,7 @@ def getDifficultyModifier(): on a variety of factors, currently only disk use. ''' percentUse = storagecounter.StorageCounter().getPercent() - difficultyIncrease = math.floor(4 * percentUse) + difficultyIncrease = math.floor(4 * percentUse) # difficulty increase is a step function return difficultyIncrease