diff --git a/server/crons.js b/server/crons.js index f32a20d..ef48eb3 100644 --- a/server/crons.js +++ b/server/crons.js @@ -3,7 +3,7 @@ import api from './apis' // import bittrex from 'node-bittrex-api' const updateMarkets = (app) => { - api.markets({ active: true, base: 'BTC' }).then((markets) => { + api.markets({ base: 'BTC' }).then((markets) => { app.models.Market.updateMarkets(markets) }) }