changeset 3232:ea3dccc21837 draft

Merge pull request #1608 from runeksvendsen/master Update the comment in GetBlockValue() to better reflect the uncertainty about the time interval between subsidy reductions
author Gregory Maxwell <greg@xiph.org>
date Wed, 18 Jul 2012 06:13:52 -0700
parents b672a4492635 (current diff) 58efb3e1c706 (diff)
children cd18d32ea29d
files
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;