| 3445 | } |
| 3446 | |
| 3447 | std::set<ScriptPubKeyMan*> CWallet::GetAllScriptPubKeyMans() const |
| 3448 | { |
| 3449 | std::set<ScriptPubKeyMan*> spk_mans; |
| 3450 | for (const auto& spk_man_pair : m_spk_managers) { |
| 3451 | spk_mans.insert(spk_man_pair.second.get()); |
| 3452 | } |
| 3453 | return spk_mans; |
| 3454 | } |
| 3455 | |
| 3456 | ScriptPubKeyMan* CWallet::GetScriptPubKeyMan(const OutputType& type, bool internal) const |
| 3457 | { |
no test coverage detected