disable ix for fin budget submit

This commit is contained in:
Evan Duffield 2015-08-03 12:57:15 -07:00
parent 92be1268bb
commit 1f35a12033

View File

@ -147,7 +147,7 @@ void CBudgetManager::SubmitFinalBudget()
CTransaction tx; CTransaction tx;
if(!mapCollateral.count(tempBudget.GetHash())){ if(!mapCollateral.count(tempBudget.GetHash())){
CWalletTx wtx; CWalletTx wtx;
if(!pwalletMain->GetBudgetSystemCollateralTX(wtx, tempBudget.GetHash(), true)){ if(!pwalletMain->GetBudgetSystemCollateralTX(wtx, tempBudget.GetHash(), false)){
LogPrintf("CBudgetManager::SubmitFinalBudget - Can't make collateral transaction\n"); LogPrintf("CBudgetManager::SubmitFinalBudget - Can't make collateral transaction\n");
return; return;
} }