Skip to content

Commit

Permalink
Fixing lower case usage in QCX
Browse files Browse the repository at this point in the history
  • Loading branch information
cmroche authored and askmike committed Apr 22, 2018
1 parent 2ed8d61 commit 5d0c501
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions exchanges/quadriga.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ var Trader = function(config) {
this.key = config.key;
this.secret = config.secret;
this.clientId = config.username;
this.asset = config.asset.toLowerCase();
this.currency = config.currency.toLowerCase();
this.asset = config.asset;
this.currency = config.currency;
}

this.pair = this.asset + '_' + this.currency;
this.pair = this.asset.toLowerCase() + '_' + this.currency.toLowerCase();
this.name = 'quadriga';
this.since = null;

Expand Down

0 comments on commit 5d0c501

Please sign in to comment.