diff --git a/sn_auditor/src/dag_db.rs b/sn_auditor/src/dag_db.rs index ca56271d3e..f674917a2d 100644 --- a/sn_auditor/src/dag_db.rs +++ b/sn_auditor/src/dag_db.rs @@ -263,7 +263,7 @@ impl SpendDagDb { utxo_addresses.extend( new_utxos .into_iter() - .map(|a| (a, Instant::now() + REATTEMPT_INTERVAL)), + .map(|a| (a, Instant::now() + *UTXO_REATTEMPT_INTERVAL)), ); } else { panic!("There is no point in running the auditor if we are not collecting the DAG or collecting data through crawling. Please enable the `dag-collection` feature or provide beta program related arguments."); @@ -285,7 +285,7 @@ impl SpendDagDb { utxo_addresses.extend( new_utxos .into_iter() - .map(|a| (a, Instant::now() + REATTEMPT_INTERVAL)), + .map(|a| (a, Instant::now() + *UTXO_REATTEMPT_INTERVAL)), ); // write updates to local DAG and save to disk