diff --git a/src/core/atomicdex/api/kdf/address_format.hpp b/src/core/atomicdex/api/kdf/address_format.hpp index 894ae0b4a9..a37f57a6f9 100644 --- a/src/core/atomicdex/api/kdf/address_format.hpp +++ b/src/core/atomicdex/api/kdf/address_format.hpp @@ -16,6 +16,7 @@ #pragma once +#include #include #include diff --git a/src/core/atomicdex/api/kdf/kdf.hpp b/src/core/atomicdex/api/kdf/kdf.hpp index e29c410d02..42ca488ad0 100644 --- a/src/core/atomicdex/api/kdf/kdf.hpp +++ b/src/core/atomicdex/api/kdf/kdf.hpp @@ -22,6 +22,7 @@ //! Deps #include #include +#include //! Project Headers #include "atomicdex/config/coins.cfg.hpp" diff --git a/src/core/atomicdex/api/kdf/rpc_v2/rpc2.enable_erc20.hpp b/src/core/atomicdex/api/kdf/rpc_v2/rpc2.enable_erc20.hpp index 26452f9593..ae2d22a80a 100644 --- a/src/core/atomicdex/api/kdf/rpc_v2/rpc2.enable_erc20.hpp +++ b/src/core/atomicdex/api/kdf/rpc_v2/rpc2.enable_erc20.hpp @@ -17,6 +17,7 @@ #pragma once #include +#include #include //> nlohmann::json #include "atomicdex/api/kdf/rpc.hpp" diff --git a/src/core/atomicdex/config/raw.kdf.coins.cfg.hpp b/src/core/atomicdex/config/raw.kdf.coins.cfg.hpp index 795818efcf..43352d06bc 100644 --- a/src/core/atomicdex/config/raw.kdf.coins.cfg.hpp +++ b/src/core/atomicdex/config/raw.kdf.coins.cfg.hpp @@ -7,6 +7,7 @@ //! Deps #include #include +#include //! Project #include "atomicdex/api/kdf/kdf.constants.hpp" diff --git a/src/core/atomicdex/services/sync/timesync.checker.service.cpp b/src/core/atomicdex/services/sync/timesync.checker.service.cpp index 8d539c84e8..102f682eb1 100644 --- a/src/core/atomicdex/services/sync/timesync.checker.service.cpp +++ b/src/core/atomicdex/services/sync/timesync.checker.service.cpp @@ -42,6 +42,7 @@ namespace bool get_timesync_info_rpc(web::http::http_response resp_http) { + return true; using namespace std::string_literals; nlohmann::json resp; bool sync_ok = true; @@ -73,7 +74,7 @@ namespace atomic_dex { m_timesync_clock = std::chrono::high_resolution_clock::now(); m_timesync_status = true; - fetch_timesync_status(); + // fetch_timesync_status(); } void timesync_checker_service::update() @@ -85,7 +86,7 @@ namespace atomic_dex int64_t ts_diff = now_ts - m_timesync_clock_ts; if (abs(ts_diff) > 300) { - fetch_timesync_status(); + // fetch_timesync_status(); m_timesync_clock = std::chrono::high_resolution_clock::now(); } }