We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a6084bb commit e4a4e59Copy full SHA for e4a4e59
src/privatesend.cpp
@@ -417,7 +417,7 @@ int CPrivateSend::GetDenominationsByAmounts(const std::vector<CAmount>& vecAmoun
417
CScript scriptTmp = CScript();
418
std::vector<CTxOut> vecTxOut;
419
420
- for (auto it = vecAmount.rbegin(); it != vecAmount.rend(); it++) {
+ for (auto it = vecAmount.rbegin(); it != vecAmount.rend(); ++it) {
421
CTxOut txout((*it), scriptTmp);
422
vecTxOut.push_back(txout);
423
}
0 commit comments