We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hey mate,
Just a heads up, you have API_URL + BUY_URL.
Gate.prototype.sell = function (currencyPair, rate, amount, callback) { let form = {currencyPair: currencyPair, rate: rate, amount: amount}; let header = {}; header.KEY = this.key; header.SIGN = this.getSign(querystring.stringify(form)); Request( {method: "POST", url: API_URL + SELL_URL, headers: header, form: form}, callback ); };
The text was updated successfully, but these errors were encountered:
Thanks for pointing out, I will fix it ASAP.
Sorry, something went wrong.
No branches or pull requests
Hey mate,
Just a heads up, you have API_URL + BUY_URL.
The text was updated successfully, but these errors were encountered: