Skip to content

Commit

Permalink
disable explorer in more tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ecioppettini committed Jun 1, 2021
1 parent bbc4ee0 commit 6494cf3
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 6 deletions.
Expand Up @@ -48,7 +48,6 @@ pub fn send_all_fragments() {
sender,
receiver,
jormungandr.to_remote(),
jormungandr.explorer(),
time_era.slots_per_epoch(),
30,
30,
Expand Down
Expand Up @@ -55,7 +55,6 @@ pub fn dump_send_correct_fragments() {
sender,
receiver,
jormungandr.to_remote(),
jormungandr.explorer(),
time_era.slots_per_epoch(),
2,
2,
Expand Down
Expand Up @@ -45,7 +45,6 @@ pub fn fragment_load_test() {
faucet,
receiver,
jormungandr.to_remote(),
jormungandr.explorer(),
60,
30,
30,
Expand All @@ -67,7 +66,7 @@ pub fn fragment_load_test() {
let wait = Wait::new(Duration::from_secs(1), 25);
fragment_check.wait_until_all_processed(&wait).unwrap();

time::wait_for_epoch(1, jormungandr.explorer());
time::wait_for_epoch(1, jormungandr.rest());

load::start_async(
request_generator,
Expand Down
Expand Up @@ -96,7 +96,6 @@ pub fn private_vote_load_scenario(quick_config: PrivateVotingLoadTestConfig) {
.with_committees(&[&committee])
.with_slots_per_epoch(quick_config.slots_in_epoch())
.with_certs(vec![vote_plan_cert])
.with_explorer()
.with_slot_duration(quick_config.slot_duration())
.with_block_content_max_size(quick_config.block_content_max_size())
.with_treasury(1_000.into())
Expand Down Expand Up @@ -263,7 +262,6 @@ pub fn adversary_private_vote_load_scenario(
.with_committees(&[&committee])
.with_slots_per_epoch(quick_config.slots_in_epoch())
.with_certs(vec![vote_plan_cert])
.with_explorer()
.with_slot_duration(quick_config.slot_duration())
.with_block_content_max_size(quick_config.block_content_max_size())
.with_treasury(1_000.into())
Expand Down

0 comments on commit 6494cf3

Please sign in to comment.