From c0c2aba90ee2feb194573d0903d13afbf13910c3 Mon Sep 17 00:00:00 2001 From: Sik Yoon Date: Wed, 7 Feb 2024 23:34:38 +0900 Subject: [PATCH] Fix wrong registerer number --- src/strategy_team/strategy_006.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/strategy_team/strategy_006.rs b/src/strategy_team/strategy_006.rs index 208b308..cb86d26 100644 --- a/src/strategy_team/strategy_006.rs +++ b/src/strategy_team/strategy_006.rs @@ -138,7 +138,7 @@ pub async fn list_up_for_buy( remove_keys(&mut filtered_data, keys_to_remove).await; let final_filtered_data = duplicate_filter(6, &filtered_data).await?; - insert_pre_suggested_coins(5, false, &final_filtered_data, &alldata).await; + insert_pre_suggested_coins(6, false, &final_filtered_data, &alldata).await; Ok(()) }