Added cstdint header

This commit is contained in:
Victor Skovorodnikov 2023-11-23 14:30:48 -08:00
parent 44ff0bc05e
commit 92f94d6e7d
3 changed files with 3 additions and 0 deletions

View File

@ -4,6 +4,7 @@
#include <support/lockedpool.h>
#include <support/cleanse.h>
#include <stdexcept>
#if defined(HAVE_CONFIG_H)
#include <config/bitcoin-config.h>

View File

@ -8,6 +8,7 @@
#include <attributes.h>
#include <string>
#include <vector>
#include <cstdint>
/** Parse an HD keypaths like "m/7/0'/2000". */
NODISCARD bool ParseHDKeypath(const std::string& keypath_str, std::vector<uint32_t>& keypath);

View File

@ -14,6 +14,7 @@
#include <sstream>
#include <string>
#include <vector>
#include <cstdint>
NODISCARD inline std::string TrimString(const std::string& str, const std::string& pattern = " \f\n\r\t\v")
{