Swap iterations and fUseInstantSend parameters in ApproximateBestSubset (#1819)

#1695 introduced a fix for a instant send related edge case. Somehow the
parameters got mixed up and fUseInstantSend was passed as "iterations".
This commit is contained in:
Alexander Block 2017-12-28 01:49:05 +01:00 committed by UdjinM6
parent d9058aa04d
commit fa25499868

View File

@ -2491,7 +2491,7 @@ void CWallet::AvailableCoins(vector<COutput>& vCoins, bool fOnlyConfirmed, const
} }
static void ApproximateBestSubset(vector<pair<CAmount, pair<const CWalletTx*,unsigned int> > >vValue, const CAmount& nTotalLower, const CAmount& nTargetValue, static void ApproximateBestSubset(vector<pair<CAmount, pair<const CWalletTx*,unsigned int> > >vValue, const CAmount& nTotalLower, const CAmount& nTargetValue,
vector<char>& vfBest, CAmount& nBest, int iterations = 1000, bool fUseInstantSend = false) vector<char>& vfBest, CAmount& nBest, bool fUseInstantSend = false, int iterations = 1000)
{ {
vector<char> vfIncluded; vector<char> vfIncluded;