Skip to content

Commit

Permalink
fix: 캔들 데이터 수집 차단
Browse files Browse the repository at this point in the history
  • Loading branch information
SeungGwan123 committed Nov 24, 2024
1 parent 119ee2a commit 9fdab01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/server/src/upbit/coin-ticker-websocket.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export class CoinTickerService implements OnModuleInit {
const message = JSON.parse(data.toString());
if (message.error) throw new Error(JSON.stringify(message));
this.sseService.coinTickerSendEvent(message);
this.chartService.makeCandle(message);
//this.chartService.makeCandle(message);
} catch (error) {
console.error('CoinTickerWebSocket 오류:', error);
}
Expand Down

0 comments on commit 9fdab01

Please sign in to comment.