| 3408 | } |
| 3409 | |
| 3410 | std::set<ScriptPubKeyMan*> CWallet::GetAllScriptPubKeyMans() const |
| 3411 | { |
| 3412 | std::set<ScriptPubKeyMan*> spk_mans; |
| 3413 | for (const auto& spk_man_pair : m_spk_managers) { |
| 3414 | spk_mans.insert(spk_man_pair.second.get()); |
| 3415 | } |
| 3416 | return spk_mans; |
| 3417 | } |
| 3418 | |
| 3419 | ScriptPubKeyMan* CWallet::GetScriptPubKeyMan(const OutputType& type, bool internal) const |
| 3420 | { |
no test coverage detected