From 91c5e7d03bd96e1f7ab0e946855afd04f737f745 Mon Sep 17 00:00:00 2001 From: Santiago Carmuega Date: Thu, 21 Dec 2023 10:03:50 -0300 Subject: [PATCH] omit windows --- pallas-network/src/multiplexer.rs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pallas-network/src/multiplexer.rs b/pallas-network/src/multiplexer.rs index f3ab7f97..efcdeafb 100644 --- a/pallas-network/src/multiplexer.rs +++ b/pallas-network/src/multiplexer.rs @@ -69,9 +69,8 @@ pub enum Bearer { #[cfg(unix)] Unix(unix::UnixStream), - - #[cfg(windows)] - NamedPipe(NamedPipeClient), + // #[cfg(windows)] + // NamedPipe(NamedPipeClient), } impl Bearer {