diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2016-01-20 15:54:22 +0100 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2016-01-20 15:55:03 +0100 |
commit | b92ea98503e64ea6ddc5c04b879e59b1755d5efc (patch) | |
tree | 14a1abcf9c346bf292b41321d1131bf8db594264 /src | |
parent | 9982710e88687706686bb132d3737ce3befd8eeb (diff) | |
parent | 96efcadfc0d8a84066982533c676072d3b5d8314 (diff) |
Merge #7183: Improved readability of ApproximateBestSubset
96efcad Improved readability of sorting for coin selection. (Murch)
Diffstat (limited to 'src')
-rw-r--r-- | src/wallet/wallet.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/wallet/wallet.cpp b/src/wallet/wallet.cpp index cbc71aa16b..5b8bd55498 100644 --- a/src/wallet/wallet.cpp +++ b/src/wallet/wallet.cpp @@ -1799,7 +1799,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; |