From 4574458989e3e83f59c4633b45cf18c2ad50bed1 Mon Sep 17 00:00:00 2001 From: Elliot Nunn Date: Wed, 3 Mar 2021 18:00:52 +0800 Subject: [PATCH] Switch off the "patience tester" --- ChainBoot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ChainBoot.py b/ChainBoot.py index 1551b4a..58ea438 100755 --- a/ChainBoot.py +++ b/ChainBoot.py @@ -17,7 +17,7 @@ from snefru_hash import append_snefru -UNRELIABILITY_PERCENT = 1 +UNRELIABILITY_PERCENT = 0 def failchance(): return (random.random() < UNRELIABILITY_PERCENT/100)