Skip to content

Commit a5e6203

Browse files
Merge pull request #17 from patricklodder/clean/pow/headers
cleanup: fix pow.cpp header usage
2 parents fa810fa + 8f03064 commit a5e6203

2 files changed

Lines changed: 10 additions & 9 deletions

File tree

src/Makefile.am

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -170,6 +170,7 @@ BITCOIN_CORE_H = \
170170
interfaces/wallet.h \
171171
key.h \
172172
key_io.h \
173+
libpopcnt.h \
173174
logging.h \
174175
logging/timer.h \
175176
mapport.h \

src/pow.cpp

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,17 @@
1616
#include <cmath>
1717

1818
//Blake2b, Scrypt and SHA3-512
19-
#include "cryptopp/cryptlib.h"
20-
#include "cryptopp/sha3.h"
21-
#include "cryptopp/whrlpool.h"
22-
#include "cryptopp/scrypt.h"
23-
#include "cryptopp/secblock.h"
24-
#include "cryptopp/blake2.h"
25-
#include "cryptopp/hex.h"
26-
#include "cryptopp/files.h"
19+
#include <cryptopp/cryptlib.h>
20+
#include <cryptopp/sha3.h>
21+
#include <cryptopp/whrlpool.h>
22+
#include <cryptopp/scrypt.h>
23+
#include <cryptopp/secblock.h>
24+
#include <cryptopp/blake2.h>
25+
#include <cryptopp/hex.h>
26+
#include <cryptopp/files.h>
2727

2828
//Fancy popcount implementation
29-
#include "libpopcnt.h"
29+
#include <libpopcnt.h>
3030

3131
uint16_t GetNextWorkRequired(const CBlockIndex* pindexLast, const CBlockHeader *pblock, const Consensus::Params& params)
3232
{

0 commit comments

Comments
 (0)