| 3434 | } |
| 3435 | |
| 3436 | bool CWallet::IsActiveScriptPubKeyMan(const ScriptPubKeyMan& spkm) const |
| 3437 | { |
| 3438 | for (const auto& [_, ext_spkm] : m_external_spk_managers) { |
| 3439 | if (ext_spkm == &spkm) return true; |
| 3440 | } |
| 3441 | for (const auto& [_, int_spkm] : m_internal_spk_managers) { |
| 3442 | if (int_spkm == &spkm) return true; |
| 3443 | } |
| 3444 | return false; |
| 3445 | } |
| 3446 | |
| 3447 | std::set<ScriptPubKeyMan*> CWallet::GetAllScriptPubKeyMans() const |
| 3448 | { |
no outgoing calls
no test coverage detected