aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRune K. Svendsen <runesvend@gmail.com>2012-07-18 09:37:05 +0200
committerRune K. Svendsen <runesvend@gmail.com>2012-07-18 09:37:05 +0200
commit5f2e4b0565cbc622c7600f84407ab1f7e7df3ed5 (patch)
tree1871e3a86643a7d3f2d6207f018df7014bf3964a /src
parente47bd0195c95982e1582dfef7340c11e532de89c (diff)
downloadbitcoin-5f2e4b0565cbc622c7600f84407ab1f7e7df3ed5.tar.xz
Let the comment in GetBlockValue() reflect the uncertainty about the time interval between subsidy reductions
Diffstat (limited to 'src')
-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;