From 162ff464c34b39f95a189d84161350298d72ad79 Mon Sep 17 00:00:00 2001 From: Sik Yoon Date: Mon, 20 May 2024 03:57:57 +0900 Subject: [PATCH] Change code not to show unnecessary error print --- src/future/order.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/future/order.rs b/src/future/order.rs index f599e04..c23f9f2 100644 --- a/src/future/order.rs +++ b/src/future/order.rs @@ -832,6 +832,7 @@ pub async fn get_last_price(client: &Client, price_map: &mut HashMap symbol = element.1.as_str().unwrap().to_string(), "price" => price = element.1.as_str().unwrap().parse::().unwrap(), + "time" => {}, _ => { log::error!("Elements in body msg are changed. Please update both your coinprices table and vectors."); }