Improved readability of sorting for coin selection.

Future proofing added lines
This commit is contained in:
Murch 2015-12-07 18:35:29 +01:00
parent dc0305d15a
commit 96efcadfc0
1 changed files with 2 additions and 1 deletions

View File

@ -1701,7 +1701,8 @@ bool CWallet::SelectCoinsMinConf(const CAmount& nTargetValue, int nConfMine, int
}
// Solve subset sum by stochastic approximation
sort(vValue.rbegin(), vValue.rend(), CompareValueOnly());
std::sort(vValue.begin(), vValue.end(), CompareValueOnly());
std::reverse(vValue.begin(), vValue.end());
vector<char> vfBest;
CAmount nBest;