From 8eee6bd85694a760cc1807073139d6e9eec3697c Mon Sep 17 00:00:00 2001 From: jl777 Date: Fri, 27 Jul 2018 02:21:33 -1100 Subject: [PATCH] Int64 --- src/cc/rewards.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cc/rewards.cpp b/src/cc/rewards.cpp index 2bef71da2..e3adadfe3 100644 --- a/src/cc/rewards.cpp +++ b/src/cc/rewards.cpp @@ -331,7 +331,7 @@ std::string RewardsUnlock(uint64_t txfee,char *planstr,uint256 fundingtxid,uint2 return(0); } -std::string RewardsCreateFunding(uint64_t txfee,char *planstr,int64_t funds,uint64_t APR,int64_t minseconds,int64_t maxseconds,int64_t mindeposit) +std::string RewardsCreateFunding(uint64_t txfee,char *planstr,int64_t funds,int64_t APR,int64_t minseconds,int64_t maxseconds,int64_t mindeposit) { CMutableTransaction mtx; CPubKey mypk,rewardspk; CScript opret; uint64_t sbits,a,b,c,d; struct CCcontract_info *cp,C; if ( funds < 0 || mindeposit < 0 || minseconds < 0 || maxseconds < 0 )