Skip to content

Commit ddddd69

Browse files
author
MacroFake
committed
sort after scripted-diff
1 parent fac812c commit ddddd69

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

ci/test/06_script_b.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ if [ "${RUN_TIDY}" = "true" ]; then
4444
" src/dbwrapper.cpp"\
4545
" src/init"\
4646
" src/kernel"\
47-
" src/node/mempool_args.cpp"\
4847
" src/node/chainstate.cpp"\
48+
" src/node/mempool_args.cpp"\
4949
" src/policy/feerate.cpp"\
5050
" src/policy/packages.cpp"\
5151
" src/policy/settings.cpp"\

src/Makefile.am

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,6 @@ BITCOIN_CORE_H = \
139139
compat/cpuid.h \
140140
compat/endian.h \
141141
compressor.h \
142-
node/connection_types.h \
143142
consensus/consensus.h \
144143
consensus/tx_check.h \
145144
consensus/tx_verify.h \
@@ -149,7 +148,6 @@ BITCOIN_CORE_H = \
149148
dbwrapper.h \
150149
deploymentinfo.h \
151150
deploymentstatus.h \
152-
node/eviction.h \
153151
external_signer.h \
154152
flatfile.h \
155153
fs.h \
@@ -184,7 +182,6 @@ BITCOIN_CORE_H = \
184182
logging.h \
185183
logging/timer.h \
186184
mapport.h \
187-
node/mempool_args.h \
188185
memusage.h \
189186
merkleblock.h \
190187
net.h \
@@ -199,13 +196,16 @@ BITCOIN_CORE_H = \
199196
node/caches.h \
200197
node/chainstate.h \
201198
node/coin.h \
199+
node/connection_types.h \
202200
node/context.h \
201+
node/eviction.h \
202+
node/interface_ui.h \
203+
node/mempool_args.h \
203204
node/mempool_persist_args.h \
204205
node/miner.h \
205206
node/minisketchwrapper.h \
206207
node/psbt.h \
207208
node/transaction.h \
208-
node/interface_ui.h \
209209
node/utxo_snapshot.h \
210210
noui.h \
211211
outputtype.h \
@@ -372,24 +372,24 @@ libbitcoin_node_a_SOURCES = \
372372
kernel/context.cpp \
373373
kernel/mempool_persist.cpp \
374374
mapport.cpp \
375-
node/mempool_args.cpp \
376375
net.cpp \
377-
netgroup.cpp \
378376
net_processing.cpp \
377+
netgroup.cpp \
379378
node/blockstorage.cpp \
380379
node/caches.cpp \
381380
node/chainstate.cpp \
382381
node/coin.cpp \
383382
node/connection_types.cpp \
384383
node/context.cpp \
385384
node/eviction.cpp \
385+
node/interface_ui.cpp \
386386
node/interfaces.cpp \
387+
node/mempool_args.cpp \
387388
node/mempool_persist_args.cpp \
388389
node/miner.cpp \
389390
node/minisketchwrapper.cpp \
390391
node/psbt.cpp \
391392
node/transaction.cpp \
392-
node/interface_ui.cpp \
393393
noui.cpp \
394394
policy/fees.cpp \
395395
policy/fees_args.cpp \
@@ -402,8 +402,8 @@ libbitcoin_node_a_SOURCES = \
402402
rpc/fees.cpp \
403403
rpc/mempool.cpp \
404404
rpc/mining.cpp \
405-
rpc/node.cpp \
406405
rpc/net.cpp \
406+
rpc/node.cpp \
407407
rpc/output_script.cpp \
408408
rpc/rawtransaction.cpp \
409409
rpc/server.cpp \

src/init.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@
3131
#include <interfaces/init.h>
3232
#include <interfaces/node.h>
3333
#include <mapport.h>
34-
#include <node/mempool_args.h>
3534
#include <net.h>
3635
#include <net_permissions.h>
3736
#include <net_processing.h>
@@ -42,6 +41,7 @@
4241
#include <node/chainstate.h>
4342
#include <node/context.h>
4443
#include <node/interface_ui.h>
44+
#include <node/mempool_args.h>
4545
#include <node/mempool_persist_args.h>
4646
#include <node/miner.h>
4747
#include <policy/feerate.h>

src/test/fuzz/tx_pool.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
44

55
#include <consensus/validation.h>
6-
#include <node/mempool_args.h>
76
#include <node/context.h>
7+
#include <node/mempool_args.h>
88
#include <node/miner.h>
99
#include <test/fuzz/FuzzedDataProvider.h>
1010
#include <test/fuzz/fuzz.h>

src/test/util/setup_common.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@
1414
#include <init.h>
1515
#include <init/common.h>
1616
#include <interfaces/chain.h>
17-
#include <node/mempool_args.h>
1817
#include <net.h>
1918
#include <net_processing.h>
2019
#include <node/blockstorage.h>
2120
#include <node/chainstate.h>
2221
#include <node/context.h>
22+
#include <node/mempool_args.h>
2323
#include <node/miner.h>
2424
#include <noui.h>
2525
#include <policy/fees.h>

0 commit comments

Comments
 (0)