| 3394 | } |
| 3395 | |
| 3396 | std::set<ScriptPubKeyMan*> CWallet::GetActiveScriptPubKeyMans() const |
| 3397 | { |
| 3398 | std::set<ScriptPubKeyMan*> spk_mans; |
| 3399 | for (bool internal : {false, true}) { |
| 3400 | for (OutputType t : OUTPUT_TYPES) { |
| 3401 | auto spk_man = GetScriptPubKeyMan(t, internal); |
| 3402 | if (spk_man) { |
| 3403 | spk_mans.insert(spk_man); |
| 3404 | } |
| 3405 | } |
| 3406 | } |
| 3407 | return spk_mans; |
| 3408 | } |
| 3409 | |
| 3410 | std::set<ScriptPubKeyMan*> CWallet::GetAllScriptPubKeyMans() const |
| 3411 | { |
no test coverage detected