improve errors for missing finbudgets/props

This commit is contained in:
Evan Duffield 2015-07-27 10:28:10 -07:00
parent 71c73c12c6
commit 9689e5c077

View File

@ -1007,6 +1007,7 @@ bool CBudgetManager::UpdateProposal(CBudgetVote& vote, CNode* pfrom, std::string
}
}
strError = "Proposal not found!";
return false;
}
@ -1033,6 +1034,8 @@ bool CBudgetManager::UpdateFinalizedBudget(CFinalizedBudgetVote& vote, CNode* pf
}
}
strError = "Finalized Budget not found!";
return false;
}