diff options
| author | Luke Dashjr <[email protected]> | 2012-07-22 23:15:22 +0000 |
|---|---|---|
| committer | Luke Dashjr <[email protected]> | 2012-07-22 23:15:22 +0000 |
| commit | 4f620dd0f0d0cd9ae1e2bb0403e07bd303e5b3ba (patch) | |
| tree | 8dcdd1d39d4ebfd269762fd2e5effb1955672f0c /src/main.cpp | |
| parent | Make sort and filters for transactions and labels case-insensitive (diff) | |
| parent | fix OpenSSL not written as proper noun in some comments (diff) | |
| download | discoin-4f620dd0f0d0cd9ae1e2bb0403e07bd303e5b3ba.tar.xz discoin-4f620dd0f0d0cd9ae1e2bb0403e07bd303e5b3ba.zip | |
Merge branch '0.4.x' into 0.5.x
Diffstat (limited to 'src/main.cpp')
| -rw-r--r-- | src/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp index c705f0312..e1acf59d4 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -697,7 +697,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; |