Function zebra_network::connect_isolated_tcp_direct

source ·
pub fn connect_isolated_tcp_direct(
    network: &Network,
    addr: impl Into<PeerSocketAddr>,
    user_agent: String
) -> impl Future<Output = Result<Client, BoxError>>
Expand description

Creates a direct TCP Zcash peer connection to addr. This connection is completely isolated from all other node state.

See connect_isolated for details.

§Privacy

Transactions sent over this connection can be linked to the sending and receiving IP address by passive internet observers.

Prefer connect_isolated_tor if available.