mirror of
https://github.com/dashpay/dash.git
synced 2024-12-25 20:12:57 +01:00
chore: make clang-format and linter happy
This commit is contained in:
parent
a6320865c4
commit
ec1392c6de
@ -753,14 +753,18 @@ void CGovernanceManager::VoteGovernanceTriggers(const std::optional<const CGover
|
|||||||
if (voteInstancePair.second.eOutcome == VOTE_OUTCOME_YES) {
|
if (voteInstancePair.second.eOutcome == VOTE_OUTCOME_YES) {
|
||||||
votedFundingYesTriggerHash = gov_sb_hash;
|
votedFundingYesTriggerHash = gov_sb_hash;
|
||||||
}
|
}
|
||||||
LogPrint(BCLog::GOBJECT, "CGovernanceManager::%s Not voting YES-FUNDING for trigger:%s, we voted %s for it already\n",
|
LogPrint(BCLog::GOBJECT, /* Continued */
|
||||||
strFunc, gov_sb_hash.ToString(), CGovernanceVoting::ConvertOutcomeToString(voteInstancePair.second.eOutcome));
|
"CGovernanceManager::%s "
|
||||||
|
"Not voting YES-FUNDING for trigger:%s, we voted %s for it already\n",
|
||||||
|
strFunc, gov_sb_hash.ToString(),
|
||||||
|
CGovernanceVoting::ConvertOutcomeToString(voteInstancePair.second.eOutcome));
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
});
|
});
|
||||||
} else if (VoteFundingTrigger(gov_sb_hash, VOTE_OUTCOME_YES, connman, peerman, mn_activeman)) {
|
} else if (VoteFundingTrigger(gov_sb_hash, VOTE_OUTCOME_YES, connman, peerman, mn_activeman)) {
|
||||||
LogPrint(BCLog::GOBJECT, "CGovernanceManager::%s Voting YES-FUNDING for new trigger:%s success\n", __func__, gov_sb_hash.ToString());
|
LogPrint(BCLog::GOBJECT, "CGovernanceManager::%s Voting YES-FUNDING for new trigger:%s success\n", __func__,
|
||||||
|
gov_sb_hash.ToString());
|
||||||
votedFundingYesTriggerHash = gov_sb_hash;
|
votedFundingYesTriggerHash = gov_sb_hash;
|
||||||
} else {
|
} else {
|
||||||
LogPrint(BCLog::GOBJECT, "CGovernanceManager::%s Voting YES-FUNDING for new trigger:%s failed\n", __func__, gov_sb_hash.ToString());
|
LogPrint(BCLog::GOBJECT, "CGovernanceManager::%s Voting YES-FUNDING for new trigger:%s failed\n", __func__, gov_sb_hash.ToString());
|
||||||
@ -788,8 +792,11 @@ void CGovernanceManager::VoteGovernanceTriggers(const std::optional<const CGover
|
|||||||
const auto& strFunc = __func__;
|
const auto& strFunc = __func__;
|
||||||
if (ranges::any_of(voteRecord.mapInstances, [&](const auto& voteInstancePair) {
|
if (ranges::any_of(voteRecord.mapInstances, [&](const auto& voteInstancePair) {
|
||||||
if (voteInstancePair.first == VOTE_SIGNAL_FUNDING) {
|
if (voteInstancePair.first == VOTE_SIGNAL_FUNDING) {
|
||||||
LogPrint(BCLog::GOBJECT, "CGovernanceManager::%s Not voting NO-FUNDING for trigger:%s, we voted %s for it already\n",
|
LogPrint(BCLog::GOBJECT, /* Continued */
|
||||||
strFunc, trigger_hash.ToString(), CGovernanceVoting::ConvertOutcomeToString(voteInstancePair.second.eOutcome));
|
"CGovernanceManager::%s "
|
||||||
|
"Not voting NO-FUNDING for trigger:%s, we voted %s for it already\n",
|
||||||
|
strFunc, trigger_hash.ToString(),
|
||||||
|
CGovernanceVoting::ConvertOutcomeToString(voteInstancePair.second.eOutcome));
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
|
Loading…
Reference in New Issue
Block a user