Skip to content
This repository has been archived by the owner on Feb 16, 2020. It is now read-only.

Commit

Permalink
Merge branch 'stable' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
askmike authored Oct 1, 2017
2 parents df7b749 + 20599af commit fa10ccb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion exchanges/bitfinex.js
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ Trader.prototype.getTrades = function(since, callback, descending) {
if(since)
path += '?limit_trades=2000';

this.bitfinex.trades(path, (err, data) => {
this.bitfinex.trades(path, (err, data) => {
if (err)
return this.retry(this.getTrades, args);

Expand Down
2 changes: 1 addition & 1 deletion exchanges/kraken.js
Original file line number Diff line number Diff line change
Expand Up @@ -445,4 +445,4 @@ Trader.getCapabilities = function () {
};
}

module.exports = Trader;
module.exports = Trader;
2 changes: 1 addition & 1 deletion strategies/PPO.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

// helpers
var _ = require('lodash');
var log = require('../core/log.js');
var log = require('../core/log');

// let's create our own method
var method = {};
Expand Down

0 comments on commit fa10ccb

Please sign in to comment.