aboutsummaryrefslogtreecommitdiff
path: root/jb/flow
diff options
context:
space:
mode:
Diffstat (limited to 'jb/flow')
-rw-r--r--jb/flow/assignment_tasks.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/jb/flow/assignment_tasks.py b/jb/flow/assignment_tasks.py
index 326c87c..758e0b7 100644
--- a/jb/flow/assignment_tasks.py
+++ b/jb/flow/assignment_tasks.py
@@ -471,6 +471,10 @@ def issue_worker_payment(
if not amount:
return None
+ # Don't send more than $4.97 at a time. If they have a higher wallet balance,
+ # they just need to get another hit approved.
+ amount = min(amount, USDCent(4_97))
+
pe = submit_and_approve_amt_bonus_request(
amt_worker_id=assignment.amt_worker_id, amount=amount
)