Update handle_message to accept anchors with status "CONFIRMED" in addition to "MATCHED"

This commit is contained in:
Nawaz Haider
2026-01-02 16:25:18 +06:00
parent 09b6568037
commit aa6fb2dab1
+1 -1
View File
@@ -124,7 +124,7 @@ async def handle_message(message):
not anchor_id
or side != "BUY"
or not outcome
or (status != "MATCHED")
or (status not in ["MATCHED", "CONFIRMED"])
or (size < 1)
or (price > 0.50)
):