aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2016-01-20 15:54:22 +0100
committerWladimir J. van der Laan <laanwj@gmail.com>2016-01-20 15:55:03 +0100
commitb92ea98503e64ea6ddc5c04b879e59b1755d5efc (patch)
tree14a1abcf9c346bf292b41321d1131bf8db594264 /src
parent9982710e88687706686bb132d3737ce3befd8eeb (diff)
parent96efcadfc0d8a84066982533c676072d3b5d8314 (diff)
downloadbitcoin-b92ea98503e64ea6ddc5c04b879e59b1755d5efc.tar.xz
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.cpp3
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;