File tree Expand file tree Collapse file tree 11 files changed +15
-15
lines changed
test/sanitizer_suppressions Expand file tree Collapse file tree 11 files changed +15
-15
lines changed Original file line number Diff line number Diff line change @@ -123,7 +123,7 @@ BITCOIN_CORE_H = \
123
123
bech32.h \
124
124
blockencodings.h \
125
125
blockfilter.h \
126
- bloom.h \
126
+ common/ bloom.h \
127
127
chain.h \
128
128
chainparams.h \
129
129
chainparamsbase.h \
@@ -538,7 +538,7 @@ libbitcoin_common_a_CXXFLAGS = $(AM_CXXFLAGS) $(PIE_FLAGS)
538
538
libbitcoin_common_a_SOURCES = \
539
539
base58.cpp \
540
540
bech32.cpp \
541
- bloom.cpp \
541
+ common/ bloom.cpp \
542
542
chainparams.cpp \
543
543
coins.cpp \
544
544
compressor.cpp \
Original file line number Diff line number Diff line change 6
6
#define BITCOIN_BANMAN_H
7
7
8
8
#include < addrdb.h>
9
- #include < bloom.h>
9
+ #include < common/ bloom.h>
10
10
#include < fs.h>
11
11
#include < net_types.h> // For banmap_t
12
12
#include < sync.h>
Original file line number Diff line number Diff line change 4
4
5
5
6
6
#include < bench/bench.h>
7
- #include < bloom.h>
7
+ #include < common/ bloom.h>
8
8
9
9
static void RollingBloom (benchmark::Bench& bench)
10
10
{
Original file line number Diff line number Diff line change 2
2
// Distributed under the MIT software license, see the accompanying
3
3
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
4
4
5
- #include < bloom.h>
5
+ #include < common/ bloom.h>
6
6
7
7
#include < hash.h>
8
8
#include < primitives/transaction.h>
Original file line number Diff line number Diff line change 2
2
// Distributed under the MIT software license, see the accompanying
3
3
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
4
4
5
- #ifndef BITCOIN_BLOOM_H
6
- #define BITCOIN_BLOOM_H
5
+ #ifndef BITCOIN_COMMON_BLOOM_H
6
+ #define BITCOIN_COMMON_BLOOM_H
7
7
8
8
#include < serialize.h>
9
9
#include < span.h>
@@ -124,4 +124,4 @@ class CRollingBloomFilter
124
124
int nHashFuncs;
125
125
};
126
126
127
- #endif // BITCOIN_BLOOM_H
127
+ #endif // BITCOIN_COMMON_BLOOM_H
Original file line number Diff line number Diff line change 9
9
#include < serialize.h>
10
10
#include < uint256.h>
11
11
#include < primitives/block.h>
12
- #include < bloom.h>
12
+ #include < common/ bloom.h>
13
13
14
14
#include < vector>
15
15
Original file line number Diff line number Diff line change 7
7
#define BITCOIN_NET_H
8
8
9
9
#include < addrman.h>
10
- #include < bloom.h>
10
+ #include < common/ bloom.h>
11
11
#include < chainparams.h>
12
12
#include < compat.h>
13
13
#include < consensus/amount.h>
Original file line number Diff line number Diff line change 2
2
// Distributed under the MIT software license, see the accompanying
3
3
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
4
4
5
- #include < bloom.h>
5
+ #include < common/ bloom.h>
6
6
7
7
#include < clientversion.h>
8
8
#include < key.h>
Original file line number Diff line number Diff line change 2
2
// Distributed under the MIT software license, see the accompanying
3
3
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
4
4
5
- #include < bloom.h>
5
+ #include < common/ bloom.h>
6
6
#include < primitives/transaction.h>
7
7
#include < test/fuzz/FuzzedDataProvider.h>
8
8
#include < test/fuzz/fuzz.h>
Original file line number Diff line number Diff line change 2
2
// Distributed under the MIT software license, see the accompanying
3
3
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
4
4
5
- #include < bloom.h>
5
+ #include < common/ bloom.h>
6
6
#include < test/fuzz/FuzzedDataProvider.h>
7
7
#include < test/fuzz/fuzz.h>
8
8
#include < test/fuzz/util.h>
You can’t perform that action at this time.
0 commit comments