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 committed Mar 21, 2024
1 parent 463296c commit ebf3110
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions rs/replica/setup_ic_network/src/lib.rs
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 ebf3110

Please sign in to comment.