Skip to content

Commit 399dff4

Browse files
authored
Merge pull request #961 from tripolskypetr/master
Fix for tradeFee
2 parents 45aa4b3 + b2d96c6 commit 399dff4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/node-binance-api.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3685,7 +3685,7 @@ export default class Binance {
36853685
*/
36863686
async tradeFee(symbol?: string) {
36873687
const params = symbol ? { symbol: symbol } : {};
3688-
return await this.privateSpotRequest('v1/asset/tradeFee', params);
3688+
return await this.privateSapiRequest('v1/asset/tradeFee', params);
36893689
}
36903690

36913691
/**

0 commit comments

Comments
 (0)