diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -404,6 +404,7 @@ netbase.cpp primitives/block.cpp protocol.cpp + psbt.cpp scheduler.cpp versionbitsinfo.cpp warnings.cpp diff --git a/src/Makefile.am b/src/Makefile.am --- a/src/Makefile.am +++ b/src/Makefile.am @@ -177,6 +177,7 @@ policy/policy.h \ pow.h \ protocol.h \ + psbt.h \ radix.h \ random.h \ rcu.h \ @@ -234,6 +235,7 @@ wallet/finaltx.h \ wallet/rpcdump.h \ wallet/fees.h \ + wallet/psbtwallet.h \ wallet/rpcwallet.h \ wallet/wallet.h \ wallet/walletdb.h \ @@ -343,6 +345,7 @@ wallet/finaltx.cpp \ wallet/fees.cpp \ wallet/init.cpp \ + wallet/psbtwallet.cpp \ wallet/rpcdump.cpp \ wallet/rpcwallet.cpp \ wallet/wallet.cpp \ @@ -464,6 +467,7 @@ netaddress.cpp \ netbase.cpp \ protocol.cpp \ + psbt.cpp \ scheduler.cpp \ script/descriptor.cpp \ script/ismine.cpp \ diff --git a/src/core_read.cpp b/src/core_read.cpp --- a/src/core_read.cpp +++ b/src/core_read.cpp @@ -6,6 +6,7 @@ #include #include +#include #include