From 63f319353c6716e51f965043923779aee5251637 Mon Sep 17 00:00:00 2001 From: "Rune K. Svendsen" Date: Wed, 18 Jul 2012 09:37:05 +0200 Subject: Let the comment in GetBlockValue() reflect the uncertainty about the time interval between subsidy reductions --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/main.cpp') diff --git a/src/main.cpp b/src/main.cpp index 7ce7c92e5d..453b0f8257 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -690,7 +690,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; -- cgit v1.2.3