Skip to content

Commit 35b9a61

Browse files
whirlwidekmadac
authored andcommitted
Just a typo but it confused me :-) (#33)
* Just a typo but it confused me :-) * Properly fixed now...
1 parent e00dda9 commit 35b9a61

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

bitstamp/client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,7 @@ def buy_market_order(self, amount, base="btc", quote="usd"):
337337

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

348348
def sell_market_order(self, amount, base="btc", quote="usd"):
349349
"""
350-
Order to buy amount of bitcoins for market price.
350+
Order to sell amount of bitcoins for market price.
351351
"""
352352
data = {'amount': amount}
353353
url = self._construct_url("sell/market/", base, quote)

0 commit comments

Comments
 (0)