Skip to content

Commit

Permalink
limit_trades
Browse files Browse the repository at this point in the history
  • Loading branch information
xhad committed Jun 21, 2016
1 parent 48826bb commit 7627921
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exchanges/bitfinex.js
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ Trader.prototype.cancelOrder = function(order_id, callback) {
Trader.prototype.getTrades = function(since, callback, descending) {
var args = _.toArray(arguments);
var self = this;
var limit_trades = '?limit_trades=20000';
var limit_trades = '?limit_trades=10000';

this.bitfinex.rest.trades(defaultAsset + limit_trades, function (err, data) {
if (err)
Expand Down

0 comments on commit 7627921

Please sign in to comment.