bitcoinwallet-interface 0.1.16-alpha.0

an interface for defining a bitcoin wallet -- contains various structs used throughout the wallet subsystem
Documentation
crate::ix!();

/**
  | Information about one wallet address.
  |
  */
pub struct WalletAddress {
    dest:    TxDestination,
    is_mine: IsMineType,
    name:    String,
    purpose: String,
}

impl WalletAddress {

    pub fn new(
        dest:    TxDestination,
        is_mine: IsMineType,
        name:    String,
        purpose: String) -> Self {
    
        todo!();
        /*
        : dest(std::move(dest)),
        : is_mine(is_mine),
        : name(std::move(name)),
        : purpose(std::move(purpose)),

        
        */
    }
}