Skip to content

Commit

Permalink
Merge pull request #44 from starknet-id/fix/no_domains_to_renew
Browse files Browse the repository at this point in the history
fix: expiry date
  • Loading branch information
Th0rgal authored Nov 23, 2023
2 parents b1381c3 + b363c7f commit b79c5ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bot/src/bot.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ pub async fn get_domains_ready_for_renewal(
logger: &Logger,
) -> Result<AggregateResults> {
let auto_renews_collection = state.db.collection::<Domain>("auto_renew_flows");
let min_expiry_date = Utc::now() + Duration::days(60);
let min_expiry_date = Utc::now() + Duration::days(30);

// Define aggregate pipeline
let pipeline = vec![
Expand Down

0 comments on commit b79c5ce

Please sign in to comment.