pub trait SetAddressUsed {
    // Required method
    fn set_address_used(
        &mut self,
        batch: &mut WalletBatch,
        dest: &TxDestination,
        used: bool
    ) -> bool;
}

Required Methods§

source

fn set_address_used( &mut self, batch: &mut WalletBatch, dest: &TxDestination, used: bool ) -> bool

Implementors§