From 9097efcfbd21202653fa96664e1152d0f7283049 Mon Sep 17 00:00:00 2001 From: Tim Gretler Date: Tue, 9 Jan 2024 17:43:06 +0000 Subject: [PATCH] feat: enable new p2p consensus for https outcalls and ecdsa --- rs/replica/setup_ic_network/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rs/replica/setup_ic_network/src/lib.rs b/rs/replica/setup_ic_network/src/lib.rs index f571a960c20..ccbe49809a9 100644 --- a/rs/replica/setup_ic_network/src/lib.rs +++ b/rs/replica/setup_ic_network/src/lib.rs @@ -80,8 +80,8 @@ const ENABLE_NEW_P2P_CONSENSUS: bool = false; const ENABLE_NEW_P2P_CERTIFICATION: bool = false; const ENABLE_NEW_P2P_DKG: bool = false; const ENABLE_NEW_P2P_INGRESS: bool = false; -const ENABLE_NEW_P2P_ECDSA: bool = false; -const ENABLE_NEW_P2P_HTTPS_OUTCALLS: bool = false; +const ENABLE_NEW_P2P_ECDSA: bool = true; +const ENABLE_NEW_P2P_HTTPS_OUTCALLS: bool = true; struct P2PSenders { consensus: Channel,