pub trait ImportScriptPubKeys {
    // Required method
    fn import_script_pub_keys(
        &mut self,
        label: &String,
        script_pub_keys: &HashSet<Script>,
        have_solving_data: bool,
        apply_label: bool,
        timestamp: i64
    ) -> bool;
}

Required Methods§

source

fn import_script_pub_keys( &mut self, label: &String, script_pub_keys: &HashSet<Script>, have_solving_data: bool, apply_label: bool, timestamp: i64 ) -> bool

Implementors§