Skip to content

Commit

Permalink
fix(bitsten): used basevolume as quotevolume
Browse files Browse the repository at this point in the history
  • Loading branch information
nickpater committed Mar 25, 2020
1 parent 9676e82 commit e9a22d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/bitsten.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ module.exports = async () => {
close: parseToFloat(ticker.last),
bid: parseToFloat(ticker.bid),
ask: parseToFloat(ticker.ask),
quoteVolume: parseToFloat(ticker.btcvolume),
quoteVolume: parseToFloat(ticker.basevolume),
});
});
};

0 comments on commit e9a22d9

Please sign in to comment.