wallet::DescriptorScriptPubKeyMan::GetScriptPubKeys

GetScriptPubKeys overloads

Synopses

Declared in <wallet/scriptpubkeyman.h>

Returns all scriptPubKeys currently cached by this descriptor.

virtual
std::unordered_set<CScript, SaltedSipHasher>
GetScriptPubKeys() const override;
» more...

Returns cached scriptPubKeys with a range index at or above the given minimum.

std::unordered_set<CScript, SaltedSipHasher>
GetScriptPubKeys(int32_t minimum_index) const;
» more...

Return Value

  • The set of cached scriptPubKeys.
  • The set of cached scriptPubKeys at or above the given index.

Parameters

NameDescription
minimum_indexThe lowest range index to include.