|
|
@@ -29,7 +29,7 @@ pub(crate) async fn reference_bybit_swap_run(is_shutdown_arc: Arc<AtomicBool>,
|
|
|
ws.set_subscribe(vec![
|
|
|
BybitSwapSubscribeType::PuOrderBook1,
|
|
|
BybitSwapSubscribeType::PuTrade,
|
|
|
- BybitSwapSubscribeType::PuTickers
|
|
|
+ // BybitSwapSubscribeType::PuTickers
|
|
|
]);
|
|
|
|
|
|
// 读取数据
|
|
|
@@ -160,8 +160,8 @@ async fn on_public_data(core_arc: Arc<Mutex<Core>>, mul: &Decimal, response: &Re
|
|
|
}
|
|
|
}
|
|
|
"tickers" => {
|
|
|
- let ticker = ExchangeStructHandler::ticker_handle(BybitSwap, response).await;
|
|
|
- info!(?ticker)
|
|
|
+ // let ticker = ExchangeStructHandler::ticker_handle(BybitSwap, response).await;
|
|
|
+ // info!(?ticker)
|
|
|
}
|
|
|
_ => {
|
|
|
error!("未知推送类型");
|