mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 12:32:48 +01:00
Bugfix: avoid sub-cent change (lost in fees) whenever possible
This commit is contained in:
parent
6665aca024
commit
a14bf1946d
24
main.cpp
24
main.cpp
@ -3750,16 +3750,16 @@ bool SelectCoinsMinConf(int64 nTargetValue, int nConfMine, int nConfTheirs, set<
|
||||
int64 n = pcoin->GetCredit();
|
||||
if (n <= 0)
|
||||
continue;
|
||||
if (n < nTargetValue)
|
||||
{
|
||||
vValue.push_back(make_pair(n, pcoin));
|
||||
nTotalLower += n;
|
||||
}
|
||||
else if (n == nTargetValue)
|
||||
if (n == nTargetValue)
|
||||
{
|
||||
setCoinsRet.insert(pcoin);
|
||||
return true;
|
||||
}
|
||||
else if (n < nTargetValue + CENT)
|
||||
{
|
||||
vValue.push_back(make_pair(n, pcoin));
|
||||
nTotalLower += n;
|
||||
}
|
||||
else if (n < nLowestLarger)
|
||||
{
|
||||
nLowestLarger = n;
|
||||
@ -3768,7 +3768,14 @@ bool SelectCoinsMinConf(int64 nTargetValue, int nConfMine, int nConfTheirs, set<
|
||||
}
|
||||
}
|
||||
|
||||
if (nTotalLower < nTargetValue)
|
||||
if (nTotalLower == nTargetValue || nTotalLower == nTargetValue + CENT)
|
||||
{
|
||||
for (int i = 0; i < vValue.size(); ++i)
|
||||
setCoinsRet.insert(vValue[i].second);
|
||||
return true;
|
||||
}
|
||||
|
||||
if (nTotalLower < nTargetValue + (pcoinLowestLarger ? CENT : 0))
|
||||
{
|
||||
if (pcoinLowestLarger == NULL)
|
||||
return false;
|
||||
@ -3776,6 +3783,9 @@ bool SelectCoinsMinConf(int64 nTargetValue, int nConfMine, int nConfTheirs, set<
|
||||
return true;
|
||||
}
|
||||
|
||||
if (nTotalLower >= nTargetValue + CENT)
|
||||
nTargetValue += CENT;
|
||||
|
||||
// Solve subset sum by stochastic approximation
|
||||
sort(vValue.rbegin(), vValue.rend());
|
||||
vector<char> vfIncluded;
|
||||
|
Loading…
Reference in New Issue
Block a user