23.x Add missing includes to fix gcc-13 compile error

Additional include fixes are required to make the 23.x branch compile
using GCC 13.
This commit is contained in:
fanquake
2023-01-20 11:55:29 +00:00
parent 398768769f
commit af86266165
2 changed files with 2 additions and 0 deletions

View File

@@ -6,6 +6,7 @@
#define BITCOIN_UTIL_BIP32_H
#include <attributes.h>
#include <cstdint>
#include <string>
#include <vector>

View File

@@ -9,6 +9,7 @@
#include <algorithm>
#include <array>
#include <cstdint>
#include <cstring>
#include <locale>
#include <sstream>