Skip to content

Commit

Permalink
updated coinbase-withdraw endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Paquin authored and Daniel Paquin committed Sep 6, 2018
1 parent a3039cb commit bd4e2eb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cbpro/authenticated_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -867,7 +867,7 @@ def coinbase_withdraw(self, amount, currency, coinbase_account_id):
params = {'amount': amount,
'currency': currency,
'coinbase_account_id': coinbase_account_id}
return self._send_message('post', '/withdrawals/coinbase',
return self._send_message('post', '/withdrawals/coinbase-account',
data=json.dumps(params))

def crypto_withdraw(self, amount, currency, crypto_address):
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

setup(
name='cbpro',
version='1.1.3',
version='1.1.4',
author='Daniel Paquin',
author_email='[email protected]',
license='MIT',
Expand Down

0 comments on commit bd4e2eb

Please sign in to comment.