diff options
author | Jeffrey Ryan <jeffro256@tutanota.com> | 2022-12-22 12:18:02 -0600 |
---|---|---|
committer | Jeffrey Ryan <jeffro256@tutanota.com> | 2022-12-22 12:18:02 -0600 |
commit | 7a3a593a776840bb78a2566dc64058b83e97eacd (patch) | |
tree | dd8a5b8b47d145e673494cfb34a9ff1dff858aa3 /src/wallet/wallet2.cpp | |
parent | Merge pull request #8593 (diff) | |
download | monero-7a3a593a776840bb78a2566dc64058b83e97eacd.tar.xz |
common: move boost_serialization_helper.h out and cleanup includes
Diffstat (limited to '')
-rw-r--r-- | src/wallet/wallet2.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/wallet/wallet2.cpp b/src/wallet/wallet2.cpp index a1a51f7de..53a01914d 100644 --- a/src/wallet/wallet2.cpp +++ b/src/wallet/wallet2.cpp @@ -39,7 +39,9 @@ #include <boost/algorithm/string/split.hpp> #include <boost/algorithm/string/join.hpp> #include <boost/algorithm/string/predicate.hpp> +#include <boost/archive/binary_iarchive.hpp> #include <boost/asio/ip/address.hpp> +#include <boost/filesystem/operations.hpp> #include <boost/range/adaptor/transformed.hpp> #include <boost/preprocessor/stringize.hpp> #include <openssl/evp.h> @@ -64,7 +66,6 @@ using namespace epee; #include "multisig/multisig_account.h" #include "multisig/multisig_kex_msg.h" #include "multisig/multisig_tx_builder_ringct.h" -#include "common/boost_serialization_helper.h" #include "common/command_line.h" #include "common/threadpool.h" #include "int-util.h" |