diff --git a/src/main.cpp b/src/main.cpp index bf2ae23fd..0aadc130c 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1874,8 +1874,10 @@ CAmount GetBlockSubsidy(int nHeight, const Consensus::Params& consensusParams) { if ( nHeight == 1 ) return(100000000 * COIN); // ICO allocation - else if ( nHeight < KOMODO_ENDOFERA ) //komodo_moneysupply(nHeight) < MAX_MONEY ) + else if ( nHeight < KOMODO_ENDOFERA ) return(3 * COIN); + else if ( nHeight < 2*KOMODO_ENDOFERA ) + return(2 * COIN); else return(COIN); } else