pub trait MapAuth<A, B>{
    // Required methods
    fn map_script_sig(
        &self,
        s: <A as Authorization>::ScriptSig,
    ) -> <B as Authorization>::ScriptSig;
    fn map_authorization(&self, s: A) -> B;
}

Required Methods§

Source

fn map_script_sig( &self, s: <A as Authorization>::ScriptSig, ) -> <B as Authorization>::ScriptSig

Source

fn map_authorization(&self, s: A) -> B

Implementations on Foreign Types§

Source§

impl MapAuth<Authorized, Authorized> for ()

The identity map.

Implementors§