pub trait DummySignTx {
    // Required method
    fn dummy_sign_tx(
        &self,
        tx_new: &mut MutableTransaction,
        txouts: &HashSet<TxOut>,
        coin_control: Option<*const CoinControl>
    ) -> bool;
}

Required Methods§

source

fn dummy_sign_tx( &self, tx_new: &mut MutableTransaction, txouts: &HashSet<TxOut>, coin_control: Option<*const CoinControl> ) -> bool

Implementors§