Skip to content

Commit e5fab12

Browse files
authored
Merge pull request #514 from blex41/master
fix(v2.15.10): params in getIsolatedMarginAccountInfo
2 parents 0acbfc8 + e306739 commit e5fab12

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "binance",
3-
"version": "2.15.9",
3+
"version": "2.15.10",
44
"description": "Node.js & JavaScript SDK for Binance REST APIs & WebSockets, with TypeScript & end-to-end tests.",
55
"main": "lib/index.js",
66
"types": "lib/index.d.ts",

src/main-client.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1281,7 +1281,7 @@ export class MainClient extends BaseRestClient {
12811281
getIsolatedMarginAccountInfo(params?: {
12821282
symbols?: string;
12831283
}): Promise<IsolatedMarginAccountInfo> {
1284-
return this.getPrivate('sapi/v1/margin/isolated/account', { params });
1284+
return this.getPrivate('sapi/v1/margin/isolated/account', params);
12851285
}
12861286

12871287
getIsolatedMarginFeeData(

0 commit comments

Comments
 (0)