From 1f77927e6250b9fe98f7a4df782fe82a0d73724a Mon Sep 17 00:00:00 2001 From: jl777 Date: Mon, 24 Sep 2018 07:19:21 -1100 Subject: [PATCH] Keep mining rewards indefinitely --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index 8908e811e..bf2ae23fd 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1876,7 +1876,7 @@ CAmount GetBlockSubsidy(int nHeight, const Consensus::Params& consensusParams) return(100000000 * COIN); // ICO allocation else if ( nHeight < KOMODO_ENDOFERA ) //komodo_moneysupply(nHeight) < MAX_MONEY ) return(3 * COIN); - else return(0); + else return(COIN); } else {