1
0
mirror of https://github.com/bitcoinbook/bitcoinbook synced 2025-04-15 06:46:08 +00:00

Fix difficulty adjustment formula in Chapter 12

This commit is contained in:
Bob 2025-03-31 18:30:29 +08:00
parent 275c4eb8ea
commit 0f2ef4cc93

View File

@ -941,7 +941,7 @@ The equation can be summarized as:
----
New Target = Old Target * (20,160 minutes / Actual Time of Last 2015 Blocks)
New Target = Old Target * (Actual Time of Last 2015 Blocks / 20,160 minutes)
----
[NOTE]