From 8c30b1b6b2faadaa82603af9a0d9d50c70acca71 Mon Sep 17 00:00:00 2001 From: Michael Toutonghi Date: Tue, 10 Apr 2018 15:01:52 -0700 Subject: [PATCH] fixed subsidy and max money calc when linear positive slope --- src/komodo_utils.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/komodo_utils.h b/src/komodo_utils.h index 7057112b8..80007f721 100644 --- a/src/komodo_utils.h +++ b/src/komodo_utils.h @@ -1623,7 +1623,7 @@ uint64_t komodo_ac_block_subsidy(int nHeight) } } } - return(nSubsidy); + return(subsidy); } void komodo_args(char *argv0)