diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -410,6 +410,7 @@ primitives/block.cpp protocol.cpp psbt.cpp + rpc/rawtransaction_util.cpp rpc/util.cpp scheduler.cpp versionbitsinfo.cpp diff --git a/src/Makefile.am b/src/Makefile.am --- a/src/Makefile.am +++ b/src/Makefile.am @@ -202,7 +202,7 @@ rpc/jsonrpcrequest.h \ rpc/mining.h \ rpc/protocol.h \ - rpc/rawtransaction.h \ + rpc/rawtransaction_util.h \ rpc/server.h \ rpc/register.h \ rpc/util.h \ @@ -491,6 +491,7 @@ policy/policy.cpp \ protocol.cpp \ psbt.cpp \ + rpc/rawtransaction_util.cpp \ rpc/util.cpp \ scheduler.cpp \ script/descriptor.cpp \ diff --git a/src/rpc/rawtransaction.cpp b/src/rpc/rawtransaction.cpp --- a/src/rpc/rawtransaction.cpp +++ b/src/rpc/rawtransaction.cpp @@ -20,7 +20,7 @@ #include #include #include -#include +#include #include #include #include