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

CEX.io syntax error #61

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion exchanges/cexio.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ var Trader = function(config) {
this.user = config.username;
this.key = config.key;
this.secret = config.secret;
this.pair = 'ghs_' + config.currency.toLowerCase();
this.pair = 'GHS/' + config.asset.toUpperCase();
this.name = 'cex.io';
this.next_tid = 0;

Expand Down