Skip to content

Commit

Permalink
lint: Fix duplicate includes
Browse files Browse the repository at this point in the history
  • Loading branch information
str4d committed Nov 9, 2020
1 parent d0a5343 commit 1944eb1
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion src/httprpc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
#include "ui_interface.h"
#include "crypto/hmac_sha256.h"
#include <stdio.h>
#include "utilstrencodings.h"

#include <boost/algorithm/string.hpp> // boost::trim
#include <boost/foreach.hpp> //BOOST_FOREACH
Expand Down
3 changes: 1 addition & 2 deletions src/init.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
#include "httpserver.h"
#include "httprpc.h"
#include "key.h"
#ifdef ENABLE_MINING
#if defined(ENABLE_MINING) || defined(ENABLE_WALLET)
#include "key_io.h"
#endif
#include "main.h"
Expand All @@ -41,7 +41,6 @@
#include "utilmoneystr.h"
#include "validationinterface.h"
#ifdef ENABLE_WALLET
#include "key_io.h"
#include "wallet/wallet.h"
#include "wallet/walletdb.h"
#endif
Expand Down

0 comments on commit 1944eb1

Please sign in to comment.