diff --git a/src/Makefile.am b/src/Makefile.am index 28aa3bad7186..e0258a677531 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -138,8 +138,6 @@ BITCOIN_CORE_H = \ base58.h \ batchedlogger.h \ bech32.h \ - bip39.h \ - bip39_english.h \ blockencodings.h \ bloom.h \ cachemap.h \ @@ -203,7 +201,6 @@ BITCOIN_CORE_H = \ gsl/assert.h \ gsl/pointers.h \ flat-database.h \ - hdchain.h \ flatfile.h \ fs.h \ httprpc.h \ @@ -365,12 +362,15 @@ BITCOIN_CORE_H = \ validationinterface.h \ versionbits.h \ wallet/bdb.h \ + wallet/bip39.h \ + wallet/bip39_english.h \ wallet/coincontrol.h \ wallet/coinselection.h \ wallet/context.h \ wallet/crypter.h \ wallet/db.h \ wallet/fees.h \ + wallet/hdchain.h \ wallet/ismine.h \ wallet/load.h \ wallet/rpcwallet.h \ @@ -540,12 +540,13 @@ libbitcoin_wallet_a_SOURCES = \ coinjoin/client.cpp \ coinjoin/interfaces.cpp \ coinjoin/util.cpp \ - hdchain.cpp \ + wallet/bip39.cpp \ wallet/coincontrol.cpp \ wallet/context.cpp \ wallet/crypter.cpp \ wallet/db.cpp \ wallet/fees.cpp \ + wallet/hdchain.cpp \ wallet/interfaces.cpp \ wallet/load.cpp \ wallet/rpcdump.cpp \ @@ -708,7 +709,6 @@ libbitcoin_common_a_CXXFLAGS = $(AM_CXXFLAGS) $(PIE_FLAGS) libbitcoin_common_a_SOURCES = \ base58.cpp \ bech32.cpp \ - bip39.cpp \ bloom.cpp \ chainparams.cpp \ coins.cpp \ diff --git a/src/Makefile.test.include b/src/Makefile.test.include index 75227a8f8153..a7cd3ceb0b2d 100644 --- a/src/Makefile.test.include +++ b/src/Makefile.test.include @@ -46,8 +46,8 @@ FUZZ_SUITE_LD_COMMON = \ $(LIBTEST_FUZZ) \ $(LIBTEST_UTIL) \ $(LIBBITCOIN_CONSENSUS) \ - $(LIBBITCOIN_CRYPTO) \ $(LIBBITCOIN_WALLET) \ + $(LIBBITCOIN_CRYPTO) \ $(LIBBITCOIN_CLI) \ $(LIBDASHBLS) \ $(BDB_LIBS) \ @@ -83,7 +83,6 @@ BITCOIN_TESTS =\ test/base64_tests.cpp \ test/bech32_tests.cpp \ test/bip32_tests.cpp \ - test/bip39_tests.cpp \ test/block_reward_reallocation_tests.cpp \ test/blockchain_tests.cpp \ test/blockencodings_tests.cpp \ @@ -181,6 +180,7 @@ BITCOIN_TESTS =\ if ENABLE_WALLET BITCOIN_TESTS += \ + wallet/test/bip39_tests.cpp \ wallet/test/coinjoin_tests.cpp \ wallet/test/psbt_wallet_tests.cpp \ wallet/test/wallet_tests.cpp \ diff --git a/src/script/signingprovider.h b/src/script/signingprovider.h index 8ab2793a5b5d..1514a3a3f56e 100644 --- a/src/script/signingprovider.h +++ b/src/script/signingprovider.h @@ -6,7 +6,6 @@ #ifndef BITCOIN_SCRIPT_SIGNINGPROVIDER_H #define BITCOIN_SCRIPT_SIGNINGPROVIDER_H -#include #include #include #include