Skip to content

Commit

Permalink
Merge branch 'tim/enable-145' into 'rc--2024-02-07_23-01'
Browse files Browse the repository at this point in the history
feat: enable new p2p for consensus

This release should ONLY be deployed to `TBD` 

See merge request dfinity-lab/public/ic!17548
  • Loading branch information
DFINITYManu committed Feb 8, 2024
2 parents 8d4b689 + 81db54e commit 3e25df8
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 @@ -76,10 +76,10 @@ use std::{
};
use tokio::sync::mpsc::Sender as TokioSender;

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 3e25df8

Please sign in to comment.