V0.12.0.x fix budget submission (#820)

backport of #817
This commit is contained in:
Holger Schinzel 2016-05-29 18:26:15 +02:00
parent de22e1538f
commit 93f5b6c7bc
2 changed files with 2 additions and 2 deletions

View File

@ -32,7 +32,7 @@ int GetBudgetPaymentCycleBlocks(){
return 50; //ten times per day
}
bool IsBudgetCollateralValid(uint256 nTxCollateralHash, uint256 nExpectedHash, std::string& strError, int64_t& nTime, int& nConf)
bool IsBudgetCollateralValid(uint256 nTxCollateralHash, uint256 nExpectedHash, std::string& strError, int64_t nTime, int& nConf)
{
CTransaction txCollateral;
uint256 nBlockHash;

View File

@ -46,7 +46,7 @@ void DumpBudgets();
int GetBudgetPaymentCycleBlocks();
//Check the collateral transaction for the budget proposal/finalized budget
bool IsBudgetCollateralValid(uint256 nTxCollateralHash, uint256 nExpectedHash, std::string& strError, int64_t& nTime, int& nConf);
bool IsBudgetCollateralValid(uint256 nTxCollateralHash, uint256 nExpectedHash, std::string& strError, int64_t nTime, int& nConf);
/** Save Budget Manager (budget.dat)
*/