aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregory Maxwell <greg@xiph.org>2012-07-18 06:13:52 -0700
committerGregory Maxwell <greg@xiph.org>2012-07-18 06:13:52 -0700
commit07becec31cc7ad4afdbbe65287a5e481d59f3d14 (patch)
tree683013feb2e06e953ce2c04c47aef674e8c6833a
parent1854433829a9a1bc6d860591fd208926e660e032 (diff)
parent5f2e4b0565cbc622c7600f84407ab1f7e7df3ed5 (diff)
downloadbitcoin-07becec31cc7ad4afdbbe65287a5e481d59f3d14.tar.xz
Merge pull request #1608 from runeksvendsen/master
Update the comment in GetBlockValue() to better reflect the uncertainty about the time interval between subsidy reductions
-rw-r--r--src/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp
index c4472c4556..bc2fdb0239 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -828,7 +828,7 @@ int64 static GetBlockValue(int nHeight, int64 nFees)
{
int64 nSubsidy = 50 * COIN;
- // Subsidy is cut in half every 4 years
+ // Subsidy is cut in half every 210000 blocks, which will occur approximately every 4 years
nSubsidy >>= (nHeight / 210000);
return nSubsidy + nFees;