pub trait CanGetAddresses {
    // Required method
    fn can_get_addresses(&self, internal: Option<bool>) -> bool;
}

Required Methods§

source

fn can_get_addresses(&self, internal: Option<bool>) -> bool

| Returns true if the wallet can give out | new addresses. This means it has keys | in the keypool or can generate new keys |

Implementors§