diff --git a/src/wallet/wallet.cpp b/src/wallet/wallet.cpp index 6966ebf8f8b..d8cc45b3929 100644 --- a/src/wallet/wallet.cpp +++ b/src/wallet/wallet.cpp @@ -2562,15 +2562,6 @@ void CWallet::AvailableCoins(interfaces::Chain::Lock& locked_chain, std::vector< continue; } - if (!wtx.isAbandoned()) { - // do not select auto auth outputs - std::vector metadata; - auto txType = GuessCustomTxType(*wtx.tx, metadata); - if (txType == CustomTxType::AutoAuthPrep) { - continue; - } - } - auto optHeight = locked_chain.getHeight(); bool const lockedCollateral = optHeight && !chain().mnCanSpend(wtx.tx->GetHash(), *optHeight);