pub trait IsSpendable {
    // Required method
    fn is_spendable(&mut self, dest: &TxDestination) -> bool;
}

Required Methods§

source

fn is_spendable(&mut self, dest: &TxDestination) -> bool

| Return whether wallet has private key. |

Implementors§