Skip to content

Commit

Permalink
Fix wrong function call in prototype
Browse files Browse the repository at this point in the history
  • Loading branch information
Treast committed May 15, 2021
1 parent 783b9e7 commit 2a08c55
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion dist/Binance.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ export declare namespace Binance {
subAccountsTransferSubAccountSameMaster: (this: Api, params: import("./lib/SubAccount").ISubAccountsTransferSubAccountSameMasterParameters) => Promise<import("./lib/SubAccount").ISubAccountsTransferSubAccountSameMaster>;
subAccountsTransferToMaster: (this: Api, params: import("./lib/SubAccount").ISubAccountsTransferToMasterParameters) => Promise<import("./lib/SubAccount").ISubAccountsTransferToMaster>;
subAccountsSubAccountTransferHistory: (this: Api, params: import("./lib/SubAccount").ISubAccountsSubAccountTransferHistoryParameters) => Promise<import("./lib/SubAccount").ISubAccountsSubAccountTransferHistory[]>;
subAccountsUniversalTransfer: (this: Api) => Promise<import("./lib/SubAccount").ISubAccountsList>;
subAccountsUniversalTransfer: (this: Api, params: import("./lib/SubAccount").ISubAccountsUniversalTransferParameters) => Promise<import("./lib/SubAccount").ISubAccountsUniversalTransfer>;
subAccountsQueryUniversalTransferHistory: (this: Api, params: import("./lib/SubAccount").ISubAccountsQueryUniversalTransferHistoryParameters) => Promise<import("./lib/SubAccount").ISubAccountsQueryUniversalTransferHistory[]>;
subAccountsGetDetailSubAccountFuturesAccountV2: (this: Api, params: import("./lib/SubAccount").ISubAccountsGetDetailSubAccountFuturesAccountV2Parameters) => Promise<import("./lib/SubAccount").ISubAccountsGetDetailSubAccountFuturesAccountV2>;
subAccountsGetSummarySubAccountFuturesAccountV2: (this: Api, params: import("./lib/SubAccount").ISubAccountsGetSummarySubAccountFuturesAccountV2Parameters) => Promise<import("./lib/SubAccount").ISubAccountsGetSummarySubAccountFuturesAccountV2>;
Expand Down
2 changes: 1 addition & 1 deletion dist/Binance.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/Binance.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "binance.js",
"version": "1.1.0",
"version": "1.1.1",
"description": "An API wrapper for Binance. Build your application faster !",
"main": "dist/Binance.js",
"module": "dist/Binance.js",
Expand Down
2 changes: 1 addition & 1 deletion src/Binance.ts
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ export namespace Binance {
subAccountsTransferSubAccountSameMaster = SubAccounts.prototype.subAccountsTransferSubAccountSameMaster;
subAccountsTransferToMaster = SubAccounts.prototype.subAccountsTransferToMaster;
subAccountsSubAccountTransferHistory = SubAccounts.prototype.subAccountsSubAccountTransferHistory;
subAccountsUniversalTransfer = SubAccounts.prototype.subAccountsList;
subAccountsUniversalTransfer = SubAccounts.prototype.subAccountsUniversalTransfer;
subAccountsQueryUniversalTransferHistory = SubAccounts.prototype.subAccountsQueryUniversalTransferHistory;
subAccountsGetDetailSubAccountFuturesAccountV2 = SubAccounts.prototype.subAccountsGetDetailSubAccountFuturesAccountV2;
subAccountsGetSummarySubAccountFuturesAccountV2 = SubAccounts.prototype.subAccountsGetSummarySubAccountFuturesAccountV2;
Expand Down

0 comments on commit 2a08c55

Please sign in to comment.