Skip to content

Commit e4a4e59

Browse files
committed
it++ -> ++it
1 parent a6084bb commit e4a4e59

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/privatesend.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -417,7 +417,7 @@ int CPrivateSend::GetDenominationsByAmounts(const std::vector<CAmount>& vecAmoun
417417
CScript scriptTmp = CScript();
418418
std::vector<CTxOut> vecTxOut;
419419

420-
for (auto it = vecAmount.rbegin(); it != vecAmount.rend(); it++) {
420+
for (auto it = vecAmount.rbegin(); it != vecAmount.rend(); ++it) {
421421
CTxOut txout((*it), scriptTmp);
422422
vecTxOut.push_back(txout);
423423
}

0 commit comments

Comments
 (0)