diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -281,12 +281,12 @@ consensus/merkle.cpp coins.cpp compressor.cpp - dstencode.cpp feerate.cpp globals.cpp core_read.cpp core_write.cpp key.cpp + key_io.cpp keystore.cpp netaddress.cpp netbase.cpp diff --git a/src/Makefile.am b/src/Makefile.am --- a/src/Makefile.am +++ b/src/Makefile.am @@ -136,7 +136,6 @@ core_memusage.h \ cuckoocache.h \ diskblockpos.h \ - dstencode.h \ fs.h \ globals.h \ httprpc.h \ @@ -149,6 +148,7 @@ interfaces/node.h \ interfaces/wallet.h \ key.h \ + key_io.h \ keystore.h \ dbwrapper.h \ limitedmap.h \ @@ -418,12 +418,12 @@ config.cpp \ coins.cpp \ compressor.cpp \ - dstencode.cpp \ feerate.cpp \ globals.cpp \ core_read.cpp \ core_write.cpp \ key.cpp \ + key_io.cpp \ keystore.cpp \ netaddress.cpp \ netbase.cpp \ diff --git a/src/base58.h b/src/base58.h --- a/src/base58.h +++ b/src/base58.h @@ -16,12 +16,6 @@ #ifndef BITCOIN_BASE58_H #define BITCOIN_BASE58_H -#include -#include -#include -#include