diff options
author | Martijn Otto <git@martijnotto.nl> | 2018-11-15 17:29:34 +0100 |
---|---|---|
committer | Martijn Otto <git@martijnotto.nl> | 2018-11-15 17:29:34 +0100 |
commit | bd98e99c8095cf05c4d3282c888a87745ad1c559 (patch) | |
tree | 2025c8317dad74ef839fa4e3b20b2534d65f321f /src/checkpoints/checkpoints.cpp | |
parent | Merge pull request #4814 (diff) | |
download | monero-bd98e99c8095cf05c4d3282c888a87745ad1c559.tar.xz |
Removed a lot of unnecessary includes
Diffstat (limited to 'src/checkpoints/checkpoints.cpp')
-rw-r--r-- | src/checkpoints/checkpoints.cpp | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/checkpoints/checkpoints.cpp b/src/checkpoints/checkpoints.cpp index 6251fcc91..1807d44d9 100644 --- a/src/checkpoints/checkpoints.cpp +++ b/src/checkpoints/checkpoints.cpp @@ -28,17 +28,15 @@ // // Parts of this file are originally copyright (c) 2012-2013 The Cryptonote developers -#include "include_base_utils.h" - -using namespace epee; - #include "checkpoints.h" #include "common/dns_utils.h" -#include "include_base_utils.h" #include "string_tools.h" #include "storages/portable_storage_template_helper.h" // epee json include #include "serialization/keyvalue_serialization.h" +#include <vector> + +using namespace epee; #undef MONERO_DEFAULT_LOG_CATEGORY #define MONERO_DEFAULT_LOG_CATEGORY "checkpoints" |