pub trait Unlock {
    // Required method
    fn unlock(
        &mut self,
        wallet_passphrase: &SecureString,
        accept_no_keys: Option<bool>
    ) -> bool;
}

Required Methods§

source

fn unlock( &mut self, wallet_passphrase: &SecureString, accept_no_keys: Option<bool> ) -> bool

| Unlock wallet. |

Implementors§