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

Commit

Permalink
Fixing use of USDT with kraken (#1381)
Browse files Browse the repository at this point in the history
  • Loading branch information
cmroche authored and askmike committed Dec 4, 2017
1 parent 721067f commit becc485
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions exchanges/kraken.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@ var addPrefix = function(value) {

// Some currencies in Kraken don't use the prefix, not clearly documented
var getAssetPair = function(asset, currency) {
if (asset === 'USDT')
return 'USDTZUSD'; // Yet another kraken inconsistency
if (asset === 'USDT')
return 'USDTZUSD'; // Yet another kraken inconsistency

if (_.contains(assets_without_prefix, asset))
return asset + currency;
Expand Down

0 comments on commit becc485

Please sign in to comment.