Update handle_message to reject anchors with price greater than 0.50

This commit is contained in:
Nawaz Haider
2026-01-02 16:11:42 +06:00
parent b4a87e8ff7
commit 3351d0675a
+1 -1
View File
@@ -125,7 +125,7 @@ async def handle_message(message):
or side != "BUY"
or not outcome
or (status != "MATCHED")
or (price > 50)
or (price > 0.50)
):
return