-
Notifications
You must be signed in to change notification settings - Fork 18
/
round-restart.ron
53 lines (53 loc) · 1.59 KB
/
round-restart.ron
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
(
tests: [
(
id: "36",
verifiers: 2,
replacement_contributors: 0,
environment: development,
timout: Some(18000),
skip: false,
rounds: [
(
contributors: 2,
contributor_drops: [
(
after_contributions: 10,
),
],
),
],
),
(
id: "37",
verifiers: 2,
replacement_contributors: 0,
environment: development,
timout: Some(18000),
skip: false,
rounds: [
(
contributors: 2,
contributor_drops: [
(
after_contributions: 10,
),
],
contributor_starts: [
// Contributor 1.
// Start the contributor while the current round is waiting for
// participants to join.
RoundStart,
// Contributor 2.
// Start a ceremony participant after
// specified contributions have been made in
// the current round.
AfterRoundContributions((
after_round_contributions: 5
))
]
),
],
),
]
)