소스 검색

htx 关闭remove订单信息打印

JiahengHe 1 년 전
부모
커밋
0d43df4a3a
2개의 변경된 파일2개의 추가작업 그리고 5개의 파일을 삭제
  1. 2 4
      .gitignore
  2. 0 1
      strategy/src/core.rs

+ 2 - 4
.gitignore

@@ -8,7 +8,5 @@ config.toml*
 /logs*
 /test_account.toml
 
-config.json
-config.json*
-config_htx.json
-config_coinex.json
+*.json
+

+ 0 - 1
strategy/src/core.rs

@@ -350,7 +350,6 @@ impl Core {
                 self.local_orders.insert(data.client_id.clone(), order_info);
             }
         } else if data.status == "REMOVE" {
-            info!("remove orderInfo {:?}", data);
             // 如果在撤单记录中 说明此订单结束生命周期 可以移除记录
             if self.local_cancel_log.contains_key(&data.client_id) {
                 self.local_cancel_log.remove(&data.client_id);