Skip to content

Commit 8a39d77

Browse files
m-HDpcriadoperez
authored andcommitted
Change delist schedule API request to unsigned (sammchardy#1659)
It's not necessary to sign the spot delist schedule request.
1 parent 416811f commit 8a39d77

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

binance/async_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -942,7 +942,7 @@ async def get_asset_details(self, **params):
942942

943943
async def get_spot_delist_schedule(self, **params):
944944
return await self._request_margin_api(
945-
"get", "/spot/delist-schedule", signed=True, data=params
945+
"get", "/spot/delist-schedule", signed=False, data=params
946946
)
947947

948948
get_spot_delist_schedule.__doc__ = Client.get_spot_delist_schedule.__doc__

0 commit comments

Comments
 (0)