From f4b40bed099ae6918a008787816d3b9463d5d753 Mon Sep 17 00:00:00 2001 From: Andre Jochems Date: Thu, 9 Jun 2016 13:56:39 +0200 Subject: [PATCH] Updated GetTotalCoinSupply values --- src/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index ae1a002..ee8c22a 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1139,12 +1139,12 @@ int64 GetTotalCoinSupply(int nHeight, bool noCheckpoints) int heights[] = { 100000, 200000, 300000, 400000, 500000, 600000, 700000, 800000, 900000, 1000000, - 1100000 + 1100000, 1200000, 1300000, 1400000, 1500000 }; int64 supplies[] = { 482721500000000, 982721500000000, 1482721500000000, 1982721500000000, 2482721500000000, 2882721500000000, 2982721500000000, 3082721500000000, 3182721500000000, 3282721500000000, - 3382721500000000 + 3382721500000000, 3482721500000000, 3582721500000000, 3682721500000000, 3782721500000000 }; if (nHeight>=1 ) { int numHeights = (int)(sizeof(heights)/sizeof(heights[0]));