aboutsummaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
authorRune K. Svendsen <runesvend@gmail.com>2012-07-18 09:37:05 +0200
committerLuke Dashjr <luke-jr+git@utopios.org>2012-07-22 21:45:32 +0000
commit63f319353c6716e51f965043923779aee5251637 (patch)
treeb83973bc1dc5e5ff216d86c36d5f597ab49c64d1 /src/main.cpp
parent7a161e48470ad3bfe1a4f497a7f0a1bed2f2b8a1 (diff)
downloadbitcoin-63f319353c6716e51f965043923779aee5251637.tar.xz
Let the comment in GetBlockValue() reflect the uncertainty about the time interval between subsidy reductions
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp2
1 files changed, 1 insertions, 1 deletions
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;