Skip to content

Commit

Permalink
Fix withdraw 'note' field
Browse files Browse the repository at this point in the history
  • Loading branch information
Jon Eyrick authored Dec 24, 2017
1 parent d2bcf09 commit d73ba93
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions node-binance-api.js
Original file line number Diff line number Diff line change
Expand Up @@ -455,6 +455,7 @@ module.exports = function() {
},
withdraw: function(asset, address, amount, addressTag = false, callback = false) {
let params = {asset, address, amount};
params.name = "API Withdraw";
if ( addressTag ) params.addressTag = addressTag;
signedRequest(wapi+"v3/withdraw.html", params, callback, "POST");
},
Expand Down

0 comments on commit d73ba93

Please sign in to comment.