Skip to content

Commit

Permalink
Merge pull request #226 from UnitapApp/fix/single-claim
Browse files Browse the repository at this point in the history
change single-claim cutoff time to 18 december
  • Loading branch information
Bastin authored Dec 16, 2023
2 parents 8350442 + c0ec5a0 commit 9f70325
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions faucet/faucet_manager/credit_strategy.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,9 +136,9 @@ def get_claim_receipts(self):
chain=self.chain,
user_profile=self.user_profile,
_status=ClaimReceipt.VERIFIED,
# Monday 4 December 2023
# Monday 18 December 2023
datetime__gte=datetime.datetime(
2023, 12, 4, 0, 0, 0, 0, pytz.timezone("UTC")
2023, 12, 18, 0, 0, 0, 0, pytz.timezone("UTC")
), # also change in views.py
)

Expand Down
4 changes: 2 additions & 2 deletions faucet/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,9 +104,9 @@ def get_queryset(self):
ClaimReceipt.PENDING,
ClaimReceipt.REJECTED,
],
# 4 December 2023
# 18 December 2023
datetime__gte=datetime.datetime(
2023, 12, 4, 0, 0, 0, 0, pytz.timezone("UTC")
2023, 12, 18, 0, 0, 0, 0, pytz.timezone("UTC")
), # also change in credit_strategy.py
).order_by("-pk")

Expand Down

0 comments on commit 9f70325

Please sign in to comment.