pub trait WalletGetNewDestination {
// Required method
fn get_new_destination(
&mut self,
ty: OutputType,
label: String,
dest: &mut TxDestination,
error: &mut BilingualStr
) -> bool;
}
Required Methods§
sourcefn get_new_destination(
&mut self,
ty: OutputType,
label: String,
dest: &mut TxDestination,
error: &mut BilingualStr
) -> bool
fn get_new_destination( &mut self, ty: OutputType, label: String, dest: &mut TxDestination, error: &mut BilingualStr ) -> bool
| Get a new address. |