Skip to content

Commit

Permalink
remove auction-update-interval
Browse files Browse the repository at this point in the history
  • Loading branch information
m-lord-renkse committed Oct 11, 2024
1 parent 4e3b58c commit 49d0b88
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 7 deletions.
6 changes: 0 additions & 6 deletions crates/autopilot/src/arguments.rs
Original file line number Diff line number Diff line change
Expand Up @@ -118,10 +118,6 @@ pub struct Arguments {
#[clap(long, env, default_value = "0")]
pub limit_order_price_factor: f64,

/// The time between auction updates.
#[clap(long, env, default_value = "10s", value_parser = humantime::parse_duration)]
pub auction_update_interval: Duration,

/// The URL of a list of tokens our settlement contract is willing to
/// internalize.
#[clap(long, env)]
Expand Down Expand Up @@ -275,7 +271,6 @@ impl std::fmt::Display for Arguments {
db_url,
insert_batch_size,
native_price_estimation_results_required,
auction_update_interval,
max_settlement_transaction_wait,
s3,
cow_amm_configs,
Expand Down Expand Up @@ -347,7 +342,6 @@ impl std::fmt::Display for Arguments {
"native_price_estimation_results_required: {}",
native_price_estimation_results_required
)?;
writeln!(f, "auction_update_interval: {:?}", auction_update_interval)?;
writeln!(
f,
"max_settlement_transaction_wait: {:?}",
Expand Down
1 change: 0 additions & 1 deletion crates/e2e/src/setup/services.rs
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,6 @@ impl<'a> Services<'a> {
let args = [
"autopilot".to_string(),
"--max-run-loop-delay=100ms".to_string(),
"--auction-update-interval=1s".to_string(),
"--run-loop-native-price-timeout=500ms".to_string(),
format!("--ethflow-contract={:?}", self.contracts.ethflow.address()),
"--skip-event-sync=true".to_string(),
Expand Down

0 comments on commit 49d0b88

Please sign in to comment.