Willy-JL 1 год назад
Родитель
Сommit
97e22396ac
1 измененных файлов с 4 добавлено и 2 удалено
  1. 4 2
      flip_trader/callback/flip_trader_callback.c

+ 4 - 2
flip_trader/callback/flip_trader_callback.c

@@ -53,7 +53,8 @@ static void flip_trader_request_error_draw(Canvas* canvas) {
     }
 }
 
-static bool send_price_request() {
+static bool send_price_request(AssetLoaderModel* model) {
+    UNUSED(model);
     if(fhttp.state == INACTIVE) {
         return false;
     }
@@ -84,7 +85,8 @@ static bool send_price_request() {
     return true;
 }
 
-static char* process_asset_price() {
+static char* process_asset_price(AssetLoaderModel* model) {
+    UNUSED(model);
     if(!request_processed) {
         // load the received data from the saved file
         FuriString* price_data = flipper_http_load_from_file(fhttp.file_path);