Skip to content

Commit 86aa160

Browse files
committed
Fix issue not all signers in certificate test end to end
This happens from time to time, when the first signer wins all the lotteries, the stm deduplication of signatures keeps only signatures from the first signer. Reducing the f parameter limits the possibility of such an occurrence.
1 parent 29fb220 commit 86aa160

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mithril-test-lab/mithril-end-to-end/src/end_to_end_spec.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ async fn update_protocol_parameters(aggregator: &mut Aggregator) -> Result<(), S
246246
let protocol_parameters_new = ProtocolParameters {
247247
k: 150,
248248
m: 200,
249-
phi_f: 0.95,
249+
phi_f: 0.80,
250250
};
251251
info!(
252252
"> updating protocol parameters to {:?}...",

0 commit comments

Comments
 (0)