wallet::CWallet::TopUpCallback

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;
» more...

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

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

Parameters

NameDescription
scriptsThe scripts that were added during the top-up.
spkmThe ScriptPubKeyMan that produced the scripts.
spksThe newly generated scripts.