Skip to content

Commit

Permalink
feat: enable new p2p for consensus
Browse files Browse the repository at this point in the history
  • Loading branch information
tthebst authored and DFINITYManu committed Feb 8, 2024
1 parent 8d4b689 commit 81db54e
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 81db54e

Please sign in to comment.