You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Wait 2 epochs before changing stake distribution, so that we use at least one original stake distribution
138
138
target_epoch += 2;
139
139
self.toolkit
140
140
.wait
141
-
.wait_for_aggregator_at_target_epoch(
141
+
.for_aggregator_at_target_epoch(
142
142
leader_aggregator,
143
143
target_epoch,
144
144
"epoch after which the stake distribution will change".to_string(),
@@ -167,7 +167,7 @@ impl FullScenario {
167
167
letmut target_epoch = start_epoch + 2;
168
168
self.toolkit
169
169
.wait
170
-
.wait_for_aggregator_at_target_epoch(
170
+
.for_aggregator_at_target_epoch(
171
171
aggregator,
172
172
target_epoch,
173
173
"epoch after which the protocol parameters will change".to_string(),
@@ -183,7 +183,7 @@ impl FullScenario {
183
183
184
184
// Wait 6 epochs after protocol parameters update, so that we make sure that we use new protocol parameters as well as new stake distribution a few times
"epoch after which the certificate chain will be long enough to catch most common troubles with stake distribution and protocol parameters".to_string(),
@@ -204,7 +204,7 @@ impl FullScenario {
204
204
target_epoch += 5;
205
205
self.toolkit
206
206
.wait
207
-
.wait_for_aggregator_at_target_epoch(
207
+
.for_aggregator_at_target_epoch(
208
208
aggregator,
209
209
target_epoch,
210
210
"epoch after which the era switch will have triggered".to_string(),
@@ -217,7 +217,7 @@ impl FullScenario {
217
217
target_epoch += 5;
218
218
self.toolkit
219
219
.wait
220
-
.wait_for_aggregator_at_target_epoch(
220
+
.for_aggregator_at_target_epoch(
221
221
aggregator,
222
222
target_epoch,
223
223
"epoch after which the re-genesis on era switch will be completed"
0 commit comments