Skip to content

Commit

Permalink
Just a typo but it confused me :-) (#33)
Browse files Browse the repository at this point in the history
* Just a typo but it confused me :-)

* Properly fixed now...
  • Loading branch information
gosuto-inzasheru authored and kmadac committed Jan 16, 2018
1 parent e00dda9 commit 35b9a61
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bitstamp/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ def buy_market_order(self, amount, base="btc", quote="usd"):

def sell_limit_order(self, amount, price, base="btc", quote="usd", limit_price=None):
"""
Order to buy amount of bitcoins for specified price.
Order to sell amount of bitcoins for specified price.
"""
data = {'amount': amount, 'price': price}
if limit_price is not None:
Expand All @@ -347,7 +347,7 @@ def sell_limit_order(self, amount, price, base="btc", quote="usd", limit_price=N

def sell_market_order(self, amount, base="btc", quote="usd"):
"""
Order to buy amount of bitcoins for market price.
Order to sell amount of bitcoins for market price.
"""
data = {'amount': amount}
url = self._construct_url("sell/market/", base, quote)
Expand Down

0 comments on commit 35b9a61

Please sign in to comment.