|
|
@ -1605,7 +1605,7 @@ static void ApproximateBestSubset(vector<pair<CAmount, pair<const CWalletTx*,uns |
|
|
|
bool fReachedTarget = false; |
|
|
|
bool fReachedTarget = false; |
|
|
|
for (int nPass = 0; nPass < 2 && !fReachedTarget; nPass++) |
|
|
|
for (int nPass = 0; nPass < 2 && !fReachedTarget; nPass++) |
|
|
|
{ |
|
|
|
{ |
|
|
|
for (unsigned int i = 0; i < vValue.size() && !fReachedTarget; i++) |
|
|
|
for (unsigned int i = 0; i < vValue.size(); i++) |
|
|
|
{ |
|
|
|
{ |
|
|
|
//The solver here uses a randomized algorithm,
|
|
|
|
//The solver here uses a randomized algorithm,
|
|
|
|
//the randomness serves no real security purpose but is just
|
|
|
|
//the randomness serves no real security purpose but is just
|
|
|
@ -1625,6 +1625,8 @@ static void ApproximateBestSubset(vector<pair<CAmount, pair<const CWalletTx*,uns |
|
|
|
nBest = nTotal; |
|
|
|
nBest = nTotal; |
|
|
|
vfBest = vfIncluded; |
|
|
|
vfBest = vfIncluded; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
nTotal -= vValue[i].first; |
|
|
|
|
|
|
|
vfIncluded[i] = false; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|