Skip to content

Commit

Permalink
Merge branch 'tim/enable-yey' into 'master'
Browse files Browse the repository at this point in the history
feat: enable new p2p consensus for https outcalls and ecdsa

 

See merge request dfinity-lab/public/ic!17032
  • Loading branch information
tthebst committed Jan 9, 2024
2 parents 02e2ab0 + 9097efc commit f3174d5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rs/replica/setup_ic_network/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,8 @@ 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_ECDSA: bool = false;
const ENABLE_NEW_P2P_HTTPS_OUTCALLS: bool = false;
const ENABLE_NEW_P2P_ECDSA: bool = true;
const ENABLE_NEW_P2P_HTTPS_OUTCALLS: bool = true;

struct P2PSenders {
consensus: Channel<ConsensusArtifact>,
Expand Down

0 comments on commit f3174d5

Please sign in to comment.