Skip to content

Commit

Permalink
Fix withdrawal_to_coinbase url (#33)
Browse files Browse the repository at this point in the history
* Fix

* Version
  • Loading branch information
acontry authored Jul 29, 2022
1 parent 7b8ff9a commit ca47d23
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion coinbasepro/auth_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -897,7 +897,7 @@ def withdraw_to_coinbase(
}
r = self._send_message(
"post",
"/withdrawals/coinbase",
"/withdrawals/coinbase-account",
data=json.dumps(params),
rate_limiter=self.a_rate_limiter,
)
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

setuptools.setup(
name="coinbasepro",
version="0.3.1",
version="0.3.2",
description="A Python interface for the Coinbase Pro API.",
long_description=readme + "\n\n" + history,
long_description_content_type="text/x-rst",
Expand Down Expand Up @@ -41,5 +41,6 @@
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
)

0 comments on commit ca47d23

Please sign in to comment.