Skip to content

Commit 8accba9

Browse files
committed
Remove unneeded comment
1 parent ae857fb commit 8accba9

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/privatesend-client.cpp

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1221,8 +1221,6 @@ bool CPrivateSendClientSession::SubmitDenominate(CConnman& connman)
12211221
}
12221222
}
12231223

1224-
//lambda error?
1225-
12261224
// more inputs first, for equal input count prefer the one with less rounds
12271225
std::sort(vecInputsByRounds.begin(), vecInputsByRounds.end(), [](const auto& a, const auto& b) {
12281226
return a.second > b.second || (a.second == b.second && a.first < b.first);
@@ -1492,7 +1490,7 @@ bool CPrivateSendClientSession::CreateDenominated(CConnman& connman)
14921490
std::sort(vecTally.begin(), vecTally.end(), [](const CompactTallyItem& a, const CompactTallyItem& b) {
14931491
return a.nAmount > b.nAmount;
14941492
});
1495-
1493+
14961494
bool fCreateMixingCollaterals = !pwalletMain->HasCollateralInputs();
14971495

14981496
for (const auto& item : vecTally) {

0 commit comments

Comments
 (0)