@@ -549,7 +549,7 @@ impl Platform for BybitSwap {
let handle = tokio::spawn(async move {
ts.on_before_send();
- TraceStack::show_delay(&ts.ins);
+ // TraceStack::show_delay(&ts.ins);
let result = self_clone.take_order(cid.as_str(), side.as_str(), price, amount).await;
ts.on_after_send();
match result {
@@ -605,7 +605,7 @@ impl Platform for GateSwap {
// order_name: [数量,方向,价格,c_id]
let mut self_clone = self.clone();
let handle = spawn(async move {
let result = self_clone.take_order(&cid, &side, price, amount).await;