Skip to content

Commit

Permalink
Merge branch 'tim/enable-14541111' into 'rc--2024-03-14_23-01'
Browse files Browse the repository at this point in the history
feat(p2p): Enable the new p2p for consensus

Should be deployed to all subnets except NNS. 

See merge request dfinity-lab/public/ic!18245
  • Loading branch information
sasa-tomic committed Mar 15, 2024
2 parents d51f0f5 + ee6de0b commit c3c5dc8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions rs/replica/setup_ic_network/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -73,10 +73,10 @@ use std::{
};
use tokio::sync::mpsc::{Sender as TokioSender, UnboundedSender};

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_CONSENSUS: bool = true;
const ENABLE_NEW_P2P_CERTIFICATION: bool = true;
const ENABLE_NEW_P2P_DKG: bool = true;
const ENABLE_NEW_P2P_INGRESS: bool = true;
const ENABLE_NEW_P2P_ECDSA: bool = true;
const ENABLE_NEW_P2P_HTTPS_OUTCALLS: bool = true;

Expand Down

0 comments on commit c3c5dc8

Please sign in to comment.