diff --git a/src/wallet.cpp b/src/wallet.cpp index 6befaeb276b2..2859d5227fd1 100644 --- a/src/wallet.cpp +++ b/src/wallet.cpp @@ -1721,7 +1721,7 @@ bool CWallet::HasCollateralInputs() const BOOST_FOREACH(const COutput& out, vCoins) if(IsCollateralAmount(out.tx->vout[out.i].nValue)) nFound++; - return nFound > 1; // should have more than one just in case + return nFound > 0; } bool CWallet::IsCollateralAmount(int64_t nInputAmount) const