[#wallet-CWallet-m_locked_coins] = xref:wallet.adoc[wallet]::xref:wallet/CWallet.adoc[CWallet]::m_locked_coins :relfileprefix: ../../ :mrdocs: Set of Coins owned by this wallet that we won't try to spend from. A Coin may be locked if it has already been used to fund a transaction that hasn't confirmed yet. We wouldn't consider the Coin spent already, but also shouldn't try to use it again. bool to track whether this locked coin is persisted to disk. == Synopsis Declared in `<wallet/wallet.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- [[guarded_by(0x7f2e1e5977c8), guarded_by(0x7f2e11aa8588), guarded_by(0x7f2e169fe378), guarded_by(0x7f2e15f2d818), guarded_by(0x7f2e12c6c4a8)]] std::map<COutPoint, bool> m_locked_coins; ---- [.small]#Created with https://www.mrdocs.com[MrDocs]#