Skip to content

Commit

Permalink
feat(p2p): Enable the new p2p for consensus
Browse files Browse the repository at this point in the history
  • Loading branch information
tthebst authored and sasa-tomic committed Mar 15, 2024
1 parent d51f0f5 commit ee6de0b
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 ee6de0b

Please sign in to comment.