Bitcoin ABC  0.29.2
P2P Digital Currency
Public Member Functions | Protected Attributes | List of all members
ReserveDestination Class Reference

A wrapper to reserve an address from a wallet. More...

#include <wallet.h>

Collaboration diagram for ReserveDestination:
[legend]

Public Member Functions

 ReserveDestination (CWallet *_pwallet, OutputType _type)
 Construct a ReserveDestination object. More...
 
 ReserveDestination (const ReserveDestination &)=delete
 
ReserveDestinationoperator= (const ReserveDestination &)=delete
 
 ~ReserveDestination ()
 Destructor. More...
 
bool GetReservedDestination (CTxDestination &pubkey, bool internal)
 Reserve an address. More...
 
void ReturnDestination ()
 Return reserved address. More...
 
void KeepDestination ()
 Keep the address. More...
 

Protected Attributes

const CWallet *const pwallet
 The wallet to reserve from. More...
 
ScriptPubKeyManm_spk_man {nullptr}
 The ScriptPubKeyMan to reserve from. More...
 
OutputType const type
 
int64_t nIndex {-1}
 The index of the address's key in the keypool. More...
 
CTxDestination address
 The destination. More...
 
bool fInternal {false}
 Whether this is from the internal (change output) keypool. More...
 

Detailed Description

A wrapper to reserve an address from a wallet.

ReserveDestination is used to reserve an address. It is currently only used inside of CreateTransaction.

Instantiating a ReserveDestination does not reserve an address. To do so, GetReservedDestination() needs to be called on the object. Once an address has been reserved, call KeepDestination() on the ReserveDestination object to make sure it is not returned. Call ReturnDestination() to return the address so it can be re-used (for example, if the address was used in a new transaction and that transaction was not completed and needed to be aborted).

If an address is reserved and KeepDestination() is not called, then the address will be returned when the ReserveDestination goes out of scope.

Definition at line 160 of file wallet.h.

Constructor & Destructor Documentation

◆ ReserveDestination() [1/2]

ReserveDestination::ReserveDestination ( CWallet _pwallet,
OutputType  _type 
)
inlineexplicit

Construct a ReserveDestination object.

This does NOT reserve an address yet

Definition at line 178 of file wallet.h.

◆ ReserveDestination() [2/2]

ReserveDestination::ReserveDestination ( const ReserveDestination )
delete

◆ ~ReserveDestination()

ReserveDestination::~ReserveDestination ( )
inline

Destructor.

If a key has been reserved and not KeepKey'ed, it will be returned to the keypool

Definition at line 186 of file wallet.h.

Here is the call graph for this function:

Member Function Documentation

◆ operator=()

ReserveDestination& ReserveDestination::operator= ( const ReserveDestination )
delete

Member Data Documentation

◆ address

CTxDestination ReserveDestination::address
protected

The destination.

Definition at line 171 of file wallet.h.

◆ fInternal

bool ReserveDestination::fInternal {false}
protected

Whether this is from the internal (change output) keypool.

Definition at line 173 of file wallet.h.

◆ m_spk_man

ScriptPubKeyMan* ReserveDestination::m_spk_man {nullptr}
protected

The ScriptPubKeyMan to reserve from.

Based on type when GetReservedDestination is called

Definition at line 166 of file wallet.h.

◆ nIndex

int64_t ReserveDestination::nIndex {-1}
protected

The index of the address's key in the keypool.

Definition at line 169 of file wallet.h.

◆ pwallet

const CWallet* const ReserveDestination::pwallet
protected

The wallet to reserve from.

Definition at line 163 of file wallet.h.

◆ type

OutputType const ReserveDestination::type
protected

Definition at line 167 of file wallet.h.


The documentation for this class was generated from the following files: