From 474385e7f888ca6497440f39e6710d320e10bf9d Mon Sep 17 00:00:00 2001 From: jkrvivian Date: Wed, 30 Oct 2024 20:46:01 +0800 Subject: [PATCH] refactor(iota-benchmark): Remove deprecated CHECKPOINTS_PER_EPOCH --- crates/iota-benchmark/tests/simtest.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/crates/iota-benchmark/tests/simtest.rs b/crates/iota-benchmark/tests/simtest.rs index d59d8a0b66f..7accc559e01 100644 --- a/crates/iota-benchmark/tests/simtest.rs +++ b/crates/iota-benchmark/tests/simtest.rs @@ -839,9 +839,6 @@ mod test { "SIM_STRESS_TEST_NUM_VALIDATORS", default_num_validators, )); - if std::env::var("CHECKPOINTS_PER_EPOCH").is_ok() { - eprintln!("CHECKPOINTS_PER_EPOCH env var is deprecated, use EPOCH_DURATION_MS"); - } let epoch_duration_ms = get_var("EPOCH_DURATION_MS", default_epoch_duration_ms); if epoch_duration_ms > 0 { builder = builder.with_epoch_duration_ms(epoch_duration_ms);