Skip to content

Commit 8591448

Browse files
authored
fix bug introduced in #1695 (#1714)
1 parent 2144dae commit 8591448

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/wallet/wallet.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -2439,7 +2439,7 @@ static void ApproximateBestSubset(vector<pair<CAmount, pair<const CWalletTx*,uns
24392439
{
24402440
for (unsigned int i = 0; i < vValue.size(); i++)
24412441
{
2442-
if (fUseInstantSend && nTotal + vValue[i].first > sporkManager.GetSporkValue(SPORK_5_INSTANTSEND_MAX_VALUE)) {
2442+
if (fUseInstantSend && nTotal + vValue[i].first > sporkManager.GetSporkValue(SPORK_5_INSTANTSEND_MAX_VALUE)*COIN) {
24432443
continue;
24442444
}
24452445
//The solver here uses a randomized algorithm,
@@ -2504,7 +2504,7 @@ bool CWallet::SelectCoinsMinConf(const CAmount& nTargetValue, int nConfMine, int
25042504
// List of values less than target
25052505
pair<CAmount, pair<const CWalletTx*,unsigned int> > coinLowestLarger;
25062506
coinLowestLarger.first = fUseInstantSend
2507-
? sporkManager.GetSporkValue(SPORK_5_INSTANTSEND_MAX_VALUE)
2507+
? sporkManager.GetSporkValue(SPORK_5_INSTANTSEND_MAX_VALUE)*COIN
25082508
: std::numeric_limits<CAmount>::max();
25092509
coinLowestLarger.second.first = NULL;
25102510
vector<pair<CAmount, pair<const CWalletTx*,unsigned int> > > vValue;

0 commit comments

Comments
 (0)