From 6d39059503f050f853e073f0bd4835b4e7374cb0 Mon Sep 17 00:00:00 2001 From: Dario Moceri Date: Mon, 25 Jan 2021 16:58:57 +0100 Subject: [PATCH] removed debug prints --- bfxapi/rest/bfx_rest.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/bfxapi/rest/bfx_rest.py b/bfxapi/rest/bfx_rest.py index 90cfc90..7281fe5 100644 --- a/bfxapi/rest/bfx_rest.py +++ b/bfxapi/rest/bfx_rest.py @@ -707,7 +707,6 @@ class BfxRest: payload["gid"] = gids if all != None: payload["all"] = all - print(payload) raw_notification = await self.post(endpoint, payload) return Notification.from_raw_notification(raw_notification) @@ -803,7 +802,6 @@ class BfxRest: } if parent: payload['parent'] = parent - print(payload) message = await self.post(endpoint, payload) return message