Skip to content

Commit

Permalink
Merge pull request #27 from schopenhauer/patch-1
Browse files Browse the repository at this point in the history
Added order_status function
  • Loading branch information
askmike committed May 5, 2016
2 parents 876bda5 + 788269a commit a473bf2
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions bitstamp.js
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,10 @@ Bitstamp.prototype.balance = function(callback) {
this._post('balance', callback);
}

Bitstamp.prototype.order_status = function (id, callback) {
this._post('order_status', callback, {id: id});
};

Bitstamp.prototype.user_transactions = function(options, callback) {
if(!callback) {
callback = options;
Expand Down

0 comments on commit a473bf2

Please sign in to comment.