pub trait AddToWallet {
    // Required method
    fn add_to_wallet(
        &mut self,
        tx: TransactionRef,
        confirm: &WalletTxConfirmation,
        update_wtx: Option<&WalletUpdateWalletTxFn>,
        flush_on_close: Option<bool>,
        rescanning_old_block: Option<bool>
    ) -> *mut WalletTx;
}

Required Methods§

source

fn add_to_wallet( &mut self, tx: TransactionRef, confirm: &WalletTxConfirmation, update_wtx: Option<&WalletUpdateWalletTxFn>, flush_on_close: Option<bool>, rescanning_old_block: Option<bool> ) -> *mut WalletTx

Implementors§