Skip to content

Commit 7ef1505

Browse files
authored
fix bug in continuous klines by gmalca
2 parents f42dfd9 + 4ab440e commit 7ef1505

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

node-binance-api.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4170,7 +4170,7 @@ let api = function Binance( options = {} ) {
41704170
deliveryContinuousKlines: async ( pair, contractType = "CURRENT_QUARTER", interval = "30m", params = {} ) => {
41714171
params.pair = pair;
41724172
params.interval = interval;
4173-
pairs.contractType = contractType;
4173+
params.contractType = contractType;
41744174
return promiseRequest( 'v1/continuousKlines', params, { base:dapi } );
41754175
},
41764176

0 commit comments

Comments
 (0)