From b2df93e9adaac0c19d30d0d7b8b34d8571c84720 Mon Sep 17 00:00:00 2001 From: swsong Date: Sat, 21 Dec 2019 21:03:16 +0900 Subject: [PATCH] correct function name not found error. --- bfxapi/rest/bfx_rest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bfxapi/rest/bfx_rest.py b/bfxapi/rest/bfx_rest.py index 3e584ba..c3fac45 100644 --- a/bfxapi/rest/bfx_rest.py +++ b/bfxapi/rest/bfx_rest.py @@ -547,7 +547,7 @@ class BfxRest: payload['meta']['aff_code'] = str(aff_code) endpoint = "auth/w/order/submit" raw_notification = await self.post(endpoint, payload) - return Notification.from_raw_order(raw_notification) + return Notification.from_raw_notification(raw_notification) async def submit_cancel_order(self, orderId): """