Drop uuid from notify func inputs

offline_dark_clearing
Tyler Goodlet 2022-10-05 14:26:55 -04:00
parent 26d6e10ad7
commit c246dcef6f
1 changed files with 2 additions and 8 deletions

View File

@ -1031,10 +1031,7 @@ async def process_trade_msg(
) )
mode.lines.remove_line(uuid=oid) mode.lines.remove_line(uuid=oid)
msg.req = req msg.req = req
await notify_from_ems_status_msg( await notify_from_ems_status_msg(msg)
uuid,
msg,
)
# response to completed 'dialog' for order request # response to completed 'dialog' for order request
case Status( case Status(
@ -1043,10 +1040,7 @@ async def process_trade_msg(
req=req, req=req,
): ):
msg.req = Order(**req) msg.req = Order(**req)
await notify_from_ems_status_msg( await notify_from_ems_status_msg(msg)
uuid,
msg,
)
mode.lines.remove_line(uuid=oid) mode.lines.remove_line(uuid=oid)
# each clearing tick is responded individually # each clearing tick is responded individually