Skip to content

Commit c83a02b

Browse files
author
James Jia
authored
Remove unnecessary accountId from historical funding (#60)
* remove unnecessary accountId from historical funding * bump version
1 parent 2b2b7e7 commit c83a02b

2 files changed

Lines changed: 1 addition & 6 deletions

File tree

dydx3/modules/private.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -873,16 +873,12 @@ def get_funding_payments(
873873

874874
def get_historical_pnl(
875875
self,
876-
account,
877876
created_before_or_at=None,
878877
created_on_or_after=None,
879878
):
880879
'''
881880
Get historical pnl ticks
882881
883-
:param account: required
884-
:type account: str
885-
886882
:param created_before_or_at: optional
887883
:type created_before_or_at: ISO str
888884
@@ -896,7 +892,6 @@ def get_historical_pnl(
896892
return self._get(
897893
'historical-pnl',
898894
{
899-
'account': account,
900895
'createdBeforeOrAt': created_before_or_at,
901896
'createdOnOrAfter': created_on_or_after,
902897
},

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
setup(
2121
name='dydx-v3-python',
22-
version='1.0.11',
22+
version='1.0.12',
2323
packages=find_packages(),
2424
package_data={
2525
'dydx3': [

0 commit comments

Comments
 (0)