changeset 3228:58efb3e1c706 draft

Let the comment in GetBlockValue() reflect the uncertainty about the time interval between subsidy reductions
author Rune K. Svendsen <runesvend@gmail.com>
date Wed, 18 Jul 2012 09:37:05 +0200
parents 981b2d3581ad
children ea3dccc21837 8ce5ebcef079
files src/main.cpp
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -828,7 +828,7 @@
 {
     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;