This commit is contained in:
Josh Harvey 2014-04-24 12:37:33 -04:00
parent 78df2f7582
commit da88243db0
2 changed files with 12 additions and 6 deletions

View file

@ -254,6 +254,6 @@ Trader.prototype.pollRate = function (callback) {
});
};
Trader.prototype.rate = function (currency) {
return this.rates[currency];
Trader.prototype.rate = function () {
return this.rates[this.config.exchanges.settings.currency];
};