pub trait GetPubKeyWithScriptAndAddress {
    // Required method
    fn get_pub_key_with_script_and_address(
        &mut self,
        script: &Script,
        address: &KeyID,
        pub_key: &mut PubKey
    ) -> bool;
}

Required Methods§

source

fn get_pub_key_with_script_and_address( &mut self, script: &Script, address: &KeyID, pub_key: &mut PubKey ) -> bool

| Get public key. |

Implementors§