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;

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

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

Return Value

  • The set of cached scriptPubKeys.

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

Parameters

Name

Description

minimum_index

The lowest range index to include.

Created with MrDocs