From 0aff9087cbb42808fda11bcfddafa3ff2226e234 Mon Sep 17 00:00:00 2001 From: Youngjoon Lee <5462944+youngjoon-lee@users.noreply.github.com> Date: Fri, 13 Sep 2024 09:51:24 +0900 Subject: [PATCH] decrease the min peering_degree in session 3 from 4 to 2 --- mixnet/ordering/src/paramset.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mixnet/ordering/src/paramset.rs b/mixnet/ordering/src/paramset.rs index cfa3040..6b34ef4 100644 --- a/mixnet/ordering/src/paramset.rs +++ b/mixnet/ordering/src/paramset.rs @@ -233,7 +233,7 @@ impl ParamSet { num_paths: 0, // since we're gonna build random topology random_topology: true, peering_degree: PeeringDegree::Random(vec![ - (4, 0.87), + (2, 0.87), (12, 0.123), (24, 0.007), ]),