From 074d17145e69ea1b8bd15a4858e16e107e53b5f8 Mon Sep 17 00:00:00 2001 From: Derrek <80121818+derrekcoleman@users.noreply.github.com> Date: Fri, 13 Dec 2024 10:07:18 -0700 Subject: [PATCH] Add missing "=" --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 19c33805..6239746d 100644 --- a/README.md +++ b/README.md @@ -75,7 +75,7 @@ Let's review the calculation given in the [Bitcoin Wiki](https://en.bitcoin.it/w ``` hashrate = difficulty * 2**32 / 600 (60 * 10 = 10 minutes) hashrate = ~157 (GH/s) = (22012.4941572 * 2**32 / 600) / 10**9 (example) -hashrate = ~595 (EH/s) (83148355189239.77 * 2**32 / 600) / 10**18 (current) +hashrate = ~595 (EH/s) = (83148355189239.77 * 2**32 / 600) / 10**18 (current) ``` The `LightRelay` requires that the proof is included at the *current* or *previous* difficulty so we can assume the attacker has 2016 * 2 blocks to brute-force a valid chain of `proofLength`.