diff --git a/src/Makefile.am b/src/Makefile.am index 6fbd307c59..a2713821c0 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -191,7 +191,6 @@ BITCOIN_CORE_H = \ scheduler.h \ script/descriptor.h \ script/generic.hpp \ - script/ismine.h \ script/sigcache.h \ script/sign.h \ script/standard.h \ @@ -233,6 +232,7 @@ BITCOIN_CORE_H = \ wallet/db.h \ wallet/feebumper.h \ wallet/fees.h \ + wallet/ismine.h \ wallet/load.h \ wallet/psbtwallet.h \ wallet/rpcwallet.h \ @@ -344,6 +344,7 @@ libbitcoin_wallet_a_SOURCES = \ wallet/db.cpp \ wallet/feebumper.cpp \ wallet/fees.cpp \ + wallet/ismine.cpp \ wallet/load.cpp \ wallet/psbtwallet.cpp \ wallet/rpcdump.cpp \ @@ -492,7 +493,6 @@ libbitcoin_common_a_SOURCES = \ rpc/util.cpp \ scheduler.cpp \ script/descriptor.cpp \ - script/ismine.cpp \ script/sign.cpp \ script/standard.cpp \ versionbitsinfo.cpp \ diff --git a/src/Makefile.test.include b/src/Makefile.test.include index a4912c85e4..0b17633588 100644 --- a/src/Makefile.test.include +++ b/src/Makefile.test.include @@ -171,7 +171,8 @@ BITCOIN_TESTS += \ wallet/test/wallet_tests.cpp \ wallet/test/wallet_crypto_tests.cpp \ wallet/test/coinselector_tests.cpp \ - wallet/test/init_tests.cpp + wallet/test/init_tests.cpp \ + wallet/test/ismine_tests.cpp # ELEMENTS: disable PSBT test # wallet/test/psbt_wallet_tests.cpp diff --git a/src/interfaces/wallet.cpp b/src/interfaces/wallet.cpp index 7290fa268f..ca7acfb45c 100644 --- a/src/interfaces/wallet.cpp +++ b/src/interfaces/wallet.cpp @@ -11,7 +11,6 @@ #include #include #include -#include