TopUpCallback overloads
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...
| Name | Description |
|---|---|
| scripts | The scripts that were added during the top-up. |
| spkm | The ScriptPubKeyMan that produced the scripts. |
| spks | The newly generated scripts. |