Skip to content

Commit e929ffc

Browse files
authored
Merge pull request #1945 from KomodoPlatform/expire_at_increase
increased expire_at for prices
2 parents a6c61ac + bb3da69 commit e929ffc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/core/atomicdex/api/komodo_prices/komodo.prices.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,8 @@ namespace atomic_dex::komodo_prices::api
7979
{
8080
web::http::http_request req;
8181
req.set_method(web::http::methods::GET);
82-
SPDLOG_INFO("url: {}", TO_STD_STR(g_komodo_prices_client->base_uri().to_string()) + "api/v2/tickers?expire_at=600");
83-
req.set_request_uri(FROM_STD_STR("/api/v2/tickers?expire_at=600"));
82+
SPDLOG_INFO("url: {}", TO_STD_STR(g_komodo_prices_client->base_uri().to_string()) + "api/v2/tickers?expire_at=21600");
83+
req.set_request_uri(FROM_STD_STR("/api/v2/tickers?expire_at=21600"));
8484
return fallback ? g_komodo_prices_client_fallback->request(req) : g_komodo_prices_client->request(req);
8585
}
8686
} // namespace atomic_dex::komodo_prices::api

0 commit comments

Comments
 (0)