pub trait SetAddressBookWithDB {
    // Required method
    fn set_address_book_withdb(
        &mut self,
        batch: &mut WalletBatch,
        address: &TxDestination,
        str_name: &str,
        str_purpose: &str
    ) -> bool;
}

Required Methods§

source

fn set_address_book_withdb( &mut self, batch: &mut WalletBatch, address: &TxDestination, str_name: &str, str_purpose: &str ) -> bool

Implementors§