diff --git a/services/transaction_service.py b/services/transaction_service.py index ff2ba72..b3663f4 100644 --- a/services/transaction_service.py +++ b/services/transaction_service.py @@ -461,9 +461,10 @@ class TransactionService(BaseService[Transaction]): """ try: # Get all pending transactions for the week (all teams) + # Use week_start to filter out keepers (week=0) and earlier transactions params = [ ('season', str(season)), - ('week', str(week)), + ('week_start', str(week)), ('cancelled', 'false'), ('frozen', 'false') ]