TopUpCallback overloads

Synopses

Declared in <wallet/scriptpubkeyman.h>

Callback function for after TopUp completes containing any scripts that were added by a SPKMan

virtual
void
TopUpCallback(
    std::set<CScript> const& scripts,
    ScriptPubKeyMan* spkm) = 0;

Handle newly generated scripts reported by a ScriptPubKeyMan top‐up.

virtual
void
TopUpCallback(
    std::set<CScript> const& spks,
    ScriptPubKeyMan* spkm) override;

Parameters

Name

Description

scripts

The scripts that were added during the top‐up.

spkm

The ScriptPubKeyMan that produced the scripts.

spks

The newly generated scripts.

Created with MrDocs