File tree 4 files changed +7
-7
lines changed 4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -258,7 +258,6 @@ BITCOIN_CORE_H = \
258
258
memusage.h \
259
259
merkleblock.h \
260
260
messagesigner.h \
261
- minisketchwrapper.h \
262
261
net.h \
263
262
net_permissions.h \
264
263
net_processing.h \
@@ -275,6 +274,7 @@ BITCOIN_CORE_H = \
275
274
node/context.h \
276
275
node/eviction.h \
277
276
node/miner.h \
277
+ node/minisketchwrapper.h \
278
278
node/psbt.h \
279
279
node/transaction.h \
280
280
node/ui_interface.h \
@@ -494,7 +494,6 @@ libbitcoin_server_a_SOURCES = \
494
494
masternode/payments.cpp \
495
495
masternode/sync.cpp \
496
496
masternode/utils.cpp \
497
- minisketchwrapper.cpp \
498
497
net.cpp \
499
498
netfulfilledman.cpp \
500
499
netgroup.cpp \
@@ -507,6 +506,7 @@ libbitcoin_server_a_SOURCES = \
507
506
node/eviction.cpp \
508
507
node/interfaces.cpp \
509
508
node/miner.cpp \
509
+ node/minisketchwrapper.cpp \
510
510
node/psbt.cpp \
511
511
node/transaction.cpp \
512
512
node/ui_interface.cpp \
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 < minisketchwrapper.h>
5
+ #include < node/ minisketchwrapper.h>
6
6
7
7
#include < logging.h>
8
8
#include < util/time.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_MINISKETCHWRAPPER_H
6
- #define BITCOIN_MINISKETCHWRAPPER_H
5
+ #ifndef BITCOIN_NODE_MINISKETCHWRAPPER_H
6
+ #define BITCOIN_NODE_MINISKETCHWRAPPER_H
7
7
8
8
#include < minisketch.h>
9
9
#include < cstddef>
@@ -14,4 +14,4 @@ Minisketch MakeMinisketch32(size_t capacity);
14
14
/* * Wrapper around Minisketch::CreateFP. */
15
15
Minisketch MakeMinisketch32FP (size_t max_elements, uint32_t fpbits);
16
16
17
- #endif // BITCOIN_DBWRAPPER_H
17
+ #endif // BITCOIN_NODE_MINISKETCHWRAPPER_H
Original file line number Diff line number Diff line change 3
3
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
4
4
5
5
#include < minisketch.h>
6
- #include < minisketchwrapper.h>
6
+ #include < node/ minisketchwrapper.h>
7
7
#include < random.h>
8
8
#include < test/util/setup_common.h>
9
9
You can’t perform that action at this time.
0 commit comments