Add platform and fix some calls

master
Mark Veidemanis 2 years ago
parent 9cc655a6a1
commit ac140f6aee
Signed by: m
GPG Key ID: 5ACFCEED46C0904F

@ -533,7 +533,7 @@ class Agora(util.Base):
:return: False or dict with response
:rtype: bool or dict
"""
dist_list = list(self.markets.create_distribution_list(filter_asset))
dist_list = list(self.markets.create_distribution_list(self.platform, filter_asset))
our_ads = self.enum_ads()
(
supported_currencies,

@ -199,8 +199,8 @@ class LBTC(util.Base):
return messages_tmp
@util.handle_exceptions
def enum_ad_ids(self, page=0):
ads = self.lbtc._api_call(api_method="ads", query_values={"page": page})
def enum_ad_ids(self, page=1):
ads = self.lbtc._api_call(api_method="api/ads/", query_values={"page": page})
if ads is False:
return False
ads_total = []

Loading…
Cancel
Save