MCPcopy Create free account
hub / github.com/bitcoin/bitcoin / GetAllScriptPubKeyMans

Method GetAllScriptPubKeyMans

src/wallet/wallet.cpp:3447–3454  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3445}
3446
3447std::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
3456ScriptPubKeyMan* CWallet::GetScriptPubKeyMan(const OutputType& type, bool internal) const
3457{

Callers 4

ExportDescriptorsFunction · 0.80
gethdkeysFunction · 0.80

Calls 2

insertMethod · 0.45
getMethod · 0.45

Tested by

no test coverage detected