From 7be884987e758db697c3fb57f3dffb300cc9cc6f Mon Sep 17 00:00:00 2001 From: Kevin Froman Date: Fri, 12 Apr 2019 12:19:01 -0500 Subject: [PATCH] fixed introduce not having enough pow --- onionr/communicatorutils/onionrdaemontools.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/onionr/communicatorutils/onionrdaemontools.py b/onionr/communicatorutils/onionrdaemontools.py index 1c4e0220..85c97747 100755 --- a/onionr/communicatorutils/onionrdaemontools.py +++ b/onionr/communicatorutils/onionrdaemontools.py @@ -73,7 +73,7 @@ class DaemonTools: data['random'] = existingRand else: self.announceProgress[peer] = True - proof = onionrproofs.DataPOW(combinedNodes, forceDifficulty=4) + proof = onionrproofs.DataPOW(combinedNodes, forceDifficulty=5) del self.announceProgress[peer] try: data['random'] = base64.b64encode(proof.waitForResult()[1])