pub trait ToElectrumScriptHash {
    // Required method
    fn to_electrum_scripthash(&self) -> ScriptHash;
}
Expand description

Trait used to convert a struct into the Electrum representation of an address

Required Methods§

source

fn to_electrum_scripthash(&self) -> ScriptHash

Transforms the current struct into a ScriptHash

Implementations on Foreign Types§

source§

impl ToElectrumScriptHash for Script

Implementors§