Skip to content

Commit

Permalink
Updated Cryptopia market info
Browse files Browse the repository at this point in the history
  • Loading branch information
rudy4682 committed Feb 1, 2016
1 parent 7b14560 commit 4053d7c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/markets/cryptopia.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ function get_trades(coin, exchange, crytopia_id, cb) {
}
return cb(null, trades);
} else {
return cb(body.message, null);
return cb(body.Message, null);
}
});
}
Expand Down Expand Up @@ -81,7 +81,7 @@ function get_orders(coin, exchange, cryptopia_id, cb) {
}
return cb(null, buys, sells);
} else {
return cb(body.message, [], [])
return cb(body.Message, [], [])
}
});
}
Expand Down

0 comments on commit 4053d7c

Please sign in to comment.