diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -327,6 +327,7 @@ sync.cpp threadinterrupt.cpp uint256.cpp + util/bip32.cpp util/bytevectorhash.cpp util/error.cpp util/moneystr.cpp diff --git a/src/Makefile.am b/src/Makefile.am --- a/src/Makefile.am +++ b/src/Makefile.am @@ -237,6 +237,7 @@ ui_interface.h \ undo.h \ util/bitmanip.h \ + util/bip32.h \ util/bytevectorhash.h \ util/check.h \ util/error.h \ @@ -545,6 +546,7 @@ uint256.cpp \ uint256.h \ util/error.cpp \ + util/bip32.cpp \ util/system.cpp \ util/moneystr.cpp \ util/settings.cpp \ diff --git a/src/rpc/rawtransaction.cpp b/src/rpc/rawtransaction.cpp --- a/src/rpc/rawtransaction.cpp +++ b/src/rpc/rawtransaction.cpp @@ -31,6 +31,7 @@ #include