jaggedsoft / node-binance-api

Node Binance API is an asynchronous node.js library for the Binance API designed to be easy to use.
MIT License
1.57k stars 767 forks source link

Wrong url for mgAccount() #648

Open danielmajer opened 3 years ago

danielmajer commented 3 years ago

Hi, please fix line 4686 at node-binance-api.js:

const endpoint = 'v1/margin' + (isIsolated)?'/isolated':'' + '/account'

to

const endpoint = 'v1/margin' + (isIsolated?'/isolated':'') + '/account'

TotoFullStackDev commented 3 years ago

Yes, easy and quick but still very important fix please!!