bitcoinnode-interface 0.1.16-alpha.0

toplevel interface for a bitcoin node (aka bitcoind process)
Documentation
crate::ix!();

pub struct NodeAddrLocal {

    /**
      | Our address, as reported by the peer
      |
      */
    pub addr_local: Service,
}

impl Default for NodeAddrLocal {

    fn default() -> Self {
        Self {
            addr_local: Service::default(),
        }
    }
}