Drop uuid from notify func inputs
parent
26d6e10ad7
commit
c246dcef6f
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue