diff --git a/src/support/lockedpool.cpp b/src/support/lockedpool.cpp index f5a18e60ac..f803b66bb2 100644 --- a/src/support/lockedpool.cpp +++ b/src/support/lockedpool.cpp @@ -23,6 +23,7 @@ #endif #include +#include #ifdef ARENA_DEBUG #include #include diff --git a/src/util/bip32.h b/src/util/bip32.h index 30f2a6732c..3db57eb67c 100644 --- a/src/util/bip32.h +++ b/src/util/bip32.h @@ -8,6 +8,7 @@ #include #include #include +#include /** Parse an HD keypaths like "m/7/0'/2000". */ [[nodiscard]] bool ParseHDKeypath(const std::string& keypath_str, std::vector& keypath); diff --git a/src/util/string.h b/src/util/string.h index 9f52a4a9cf..b0962752f6 100644 --- a/src/util/string.h +++ b/src/util/string.h @@ -14,6 +14,7 @@ #include #include #include +#include [[nodiscard]] inline std::string TrimString(const std::string& str, const std::string& pattern = " \f\n\r\t\v") {