Skip to content

Commit

Permalink
add lcw icon
Browse files Browse the repository at this point in the history
  • Loading branch information
cipig committed Oct 13, 2023
1 parent bbc27d5 commit c8b6af5
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
4 changes: 4 additions & 0 deletions src/core/atomicdex/api/komodo_prices/komodo.prices.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,10 @@ namespace atomic_dex::komodo_prices::api
{
x = provider::forex;
}
else if (j == "livecoinwatch")
{
x = provider::livecoinwatch;
}
else
{
x = provider::unknown;
Expand Down
3 changes: 2 additions & 1 deletion src/core/atomicdex/api/komodo_prices/komodo.prices.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ namespace atomic_dex::komodo_prices::api
coingecko,
coinpaprika,
forex,
livecoinwatch,
unknown
};

Expand Down Expand Up @@ -40,4 +41,4 @@ namespace atomic_dex::komodo_prices::api
namespace atomic_dex::komodo_prices::api
{
ENTT_API pplx::task<web::http::http_response> async_market_infos(bool fallback = false);
}
}

0 comments on commit c8b6af5

Please sign in to comment.