diff --git a/src/wallet.cpp b/src/wallet.cpp index bfda2e281..5bfc3589d 100644 --- a/src/wallet.cpp +++ b/src/wallet.cpp @@ -1251,7 +1251,7 @@ void CWallet::AvailableCoins(vector& vCoins, bool fOnlyConfirmed, const int nDepth = pcoin->GetDepthInMainChain(false); // do not use IX coins until we have at least 1 blockchain confirmation - if (useIX && nDepth < 1) + if (useIX && nDepth <= 5) continue; for (unsigned int i = 0; i < pcoin->vout.size(); i++) {