From 409d9ca5956fd310198b36389b00f0770ddc402b Mon Sep 17 00:00:00 2001 From: Dario Moceri Date: Mon, 25 Jan 2021 17:30:19 +0100 Subject: [PATCH] get_public_pulse_hist() -> end should be optional --- 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 7281fe5..3121aa9 100644 --- a/bfxapi/rest/bfx_rest.py +++ b/bfxapi/rest/bfx_rest.py @@ -204,7 +204,7 @@ class BfxRest: status = await self.fetch(endpoint) return status - async def get_public_pulse_hist(self, end, limit=15): + async def get_public_pulse_hist(self, end=None, limit=100): """ View the latest pulse messages. You can specify an end timestamp to view older messages.