Skip to content

Commit

Permalink
Add missing "="
Browse files Browse the repository at this point in the history
  • Loading branch information
derrekcoleman authored Dec 13, 2024
1 parent 1af9640 commit 074d171
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`.
Expand Down

0 comments on commit 074d171

Please sign in to comment.