pub trait SetSpentKeyState {
    // Required method
    fn set_spent_key_state(
        &mut self,
        batch: &mut WalletBatch,
        hash: &u256,
        n: u32,
        used: bool,
        tx_destinations: &mut HashSet<TxDestination>
    );
}

Required Methods§

source

fn set_spent_key_state( &mut self, batch: &mut WalletBatch, hash: &u256, n: u32, used: bool, tx_destinations: &mut HashSet<TxDestination> )

Implementors§