File tree Expand file tree Collapse file tree 5 files changed +12
-12
lines changed Expand file tree Collapse file tree 5 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -44,8 +44,8 @@ if [ "${RUN_TIDY}" = "true" ]; then
44
44
" src/dbwrapper.cpp" \
45
45
" src/init" \
46
46
" src/kernel" \
47
- " src/node/mempool_args.cpp" \
48
47
" src/node/chainstate.cpp" \
48
+ " src/node/mempool_args.cpp" \
49
49
" src/policy/feerate.cpp" \
50
50
" src/policy/packages.cpp" \
51
51
" src/policy/settings.cpp" \
Original file line number Diff line number Diff line change @@ -139,7 +139,6 @@ BITCOIN_CORE_H = \
139
139
compat/cpuid.h \
140
140
compat/endian.h \
141
141
compressor.h \
142
- node/connection_types.h \
143
142
consensus/consensus.h \
144
143
consensus/tx_check.h \
145
144
consensus/tx_verify.h \
@@ -149,7 +148,6 @@ BITCOIN_CORE_H = \
149
148
dbwrapper.h \
150
149
deploymentinfo.h \
151
150
deploymentstatus.h \
152
- node/eviction.h \
153
151
external_signer.h \
154
152
flatfile.h \
155
153
fs.h \
@@ -184,7 +182,6 @@ BITCOIN_CORE_H = \
184
182
logging.h \
185
183
logging/timer.h \
186
184
mapport.h \
187
- node/mempool_args.h \
188
185
memusage.h \
189
186
merkleblock.h \
190
187
net.h \
@@ -199,13 +196,16 @@ BITCOIN_CORE_H = \
199
196
node/caches.h \
200
197
node/chainstate.h \
201
198
node/coin.h \
199
+ node/connection_types.h \
202
200
node/context.h \
201
+ node/eviction.h \
202
+ node/interface_ui.h \
203
+ node/mempool_args.h \
203
204
node/mempool_persist_args.h \
204
205
node/miner.h \
205
206
node/minisketchwrapper.h \
206
207
node/psbt.h \
207
208
node/transaction.h \
208
- node/interface_ui.h \
209
209
node/utxo_snapshot.h \
210
210
noui.h \
211
211
outputtype.h \
@@ -372,24 +372,24 @@ libbitcoin_node_a_SOURCES = \
372
372
kernel/context.cpp \
373
373
kernel/mempool_persist.cpp \
374
374
mapport.cpp \
375
- node/mempool_args.cpp \
376
375
net.cpp \
377
- netgroup.cpp \
378
376
net_processing.cpp \
377
+ netgroup.cpp \
379
378
node/blockstorage.cpp \
380
379
node/caches.cpp \
381
380
node/chainstate.cpp \
382
381
node/coin.cpp \
383
382
node/connection_types.cpp \
384
383
node/context.cpp \
385
384
node/eviction.cpp \
385
+ node/interface_ui.cpp \
386
386
node/interfaces.cpp \
387
+ node/mempool_args.cpp \
387
388
node/mempool_persist_args.cpp \
388
389
node/miner.cpp \
389
390
node/minisketchwrapper.cpp \
390
391
node/psbt.cpp \
391
392
node/transaction.cpp \
392
- node/interface_ui.cpp \
393
393
noui.cpp \
394
394
policy/fees.cpp \
395
395
policy/fees_args.cpp \
@@ -402,8 +402,8 @@ libbitcoin_node_a_SOURCES = \
402
402
rpc/fees.cpp \
403
403
rpc/mempool.cpp \
404
404
rpc/mining.cpp \
405
- rpc/node.cpp \
406
405
rpc/net.cpp \
406
+ rpc/node.cpp \
407
407
rpc/output_script.cpp \
408
408
rpc/rawtransaction.cpp \
409
409
rpc/server.cpp \
Original file line number Diff line number Diff line change 31
31
#include < interfaces/init.h>
32
32
#include < interfaces/node.h>
33
33
#include < mapport.h>
34
- #include < node/mempool_args.h>
35
34
#include < net.h>
36
35
#include < net_permissions.h>
37
36
#include < net_processing.h>
42
41
#include < node/chainstate.h>
43
42
#include < node/context.h>
44
43
#include < node/interface_ui.h>
44
+ #include < node/mempool_args.h>
45
45
#include < node/mempool_persist_args.h>
46
46
#include < node/miner.h>
47
47
#include < policy/feerate.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 < consensus/validation.h>
6
- #include < node/mempool_args.h>
7
6
#include < node/context.h>
7
+ #include < node/mempool_args.h>
8
8
#include < node/miner.h>
9
9
#include < test/fuzz/FuzzedDataProvider.h>
10
10
#include < test/fuzz/fuzz.h>
Original file line number Diff line number Diff line change 14
14
#include < init.h>
15
15
#include < init/common.h>
16
16
#include < interfaces/chain.h>
17
- #include < node/mempool_args.h>
18
17
#include < net.h>
19
18
#include < net_processing.h>
20
19
#include < node/blockstorage.h>
21
20
#include < node/chainstate.h>
22
21
#include < node/context.h>
22
+ #include < node/mempool_args.h>
23
23
#include < node/miner.h>
24
24
#include < noui.h>
25
25
#include < policy/fees.h>
You can’t perform that action at this time.
0 commit comments