diff --git a/src/Makefile.am b/src/Makefile.am index f433e718da776..96a9b4d4d83b6 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -195,6 +195,9 @@ BITCOIN_CORE_H = \ hash.h \ httprpc.h \ httpserver.h \ + index/addressindex.h \ + index/spentindex.h \ + index/timestampindex.h \ indirectmap.h \ init.h \ interfaces/handler.h \ diff --git a/src/base58.cpp b/src/base58.cpp index 422694cbc71a8..a987f408ed9bd 100644 --- a/src/base58.cpp +++ b/src/base58.cpp @@ -7,7 +7,8 @@ #include "hash.h" #include "util/string.h" - +#include "script/script.h" +#include