Skip to content

Commit faba1ab

Browse files
author
MarcoFalke
committed
Sort file list after rename
1 parent fa8f60e commit faba1ab

File tree

3 files changed

+12
-11
lines changed

3 files changed

+12
-11
lines changed

src/Makefile.am

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,6 @@ BITCOIN_CORE_H = \
167167
memusage.h \
168168
merkleblock.h \
169169
miner.h \
170-
node/minisketchwrapper.h \
171170
net.h \
172171
net_permissions.h \
173172
net_processing.h \
@@ -179,6 +178,7 @@ BITCOIN_CORE_H = \
179178
node/coin.h \
180179
node/coinstats.h \
181180
node/context.h \
181+
node/minisketchwrapper.h \
182182
node/psbt.h \
183183
node/transaction.h \
184184
node/ui_interface.h \
@@ -335,14 +335,14 @@ libbitcoin_server_a_SOURCES = \
335335
init.cpp \
336336
mapport.cpp \
337337
miner.cpp \
338-
node/minisketchwrapper.cpp \
339338
net.cpp \
340339
net_processing.cpp \
341340
node/blockstorage.cpp \
342341
node/coin.cpp \
343342
node/coinstats.cpp \
344343
node/context.cpp \
345344
node/interfaces.cpp \
345+
node/minisketchwrapper.cpp \
346346
node/psbt.cpp \
347347
node/transaction.cpp \
348348
node/ui_interface.cpp \

src/Makefile.test.include

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -63,20 +63,19 @@ endif
6363

6464
# test_bitcoin binary #
6565
BITCOIN_TESTS =\
66-
test/arith_uint256_tests.cpp \
67-
test/scriptnum10.h \
6866
test/addrman_tests.cpp \
69-
test/amount_tests.cpp \
7067
test/allocator_tests.cpp \
68+
test/amount_tests.cpp \
69+
test/arith_uint256_tests.cpp \
7170
test/base32_tests.cpp \
7271
test/base58_tests.cpp \
7372
test/base64_tests.cpp \
7473
test/bech32_tests.cpp \
7574
test/bip32_tests.cpp \
7675
test/blockchain_tests.cpp \
7776
test/blockencodings_tests.cpp \
78-
test/blockfilter_tests.cpp \
7977
test/blockfilter_index_tests.cpp \
78+
test/blockfilter_tests.cpp \
8079
test/bloom_tests.cpp \
8180
test/bswap_tests.cpp \
8281
test/checkqueue_tests.cpp \
@@ -86,6 +85,7 @@ BITCOIN_TESTS =\
8685
test/compress_tests.cpp \
8786
test/crypto_tests.cpp \
8887
test/cuckoocache_tests.cpp \
88+
test/dbwrapper_tests.cpp \
8989
test/denialofservice_tests.cpp \
9090
test/descriptor_tests.cpp \
9191
test/flatfile_tests.cpp \
@@ -97,13 +97,11 @@ BITCOIN_TESTS =\
9797
test/key_io_tests.cpp \
9898
test/key_tests.cpp \
9999
test/logging_tests.cpp \
100-
test/dbwrapper_tests.cpp \
101-
test/validation_tests.cpp \
102100
test/mempool_tests.cpp \
103101
test/merkle_tests.cpp \
104102
test/merkleblock_tests.cpp \
105-
test/minisketch_tests.cpp \
106103
test/miner_tests.cpp \
104+
test/minisketch_tests.cpp \
107105
test/multisig_tests.cpp \
108106
test/net_peer_eviction_tests.cpp \
109107
test/net_tests.cpp \
@@ -123,6 +121,7 @@ BITCOIN_TESTS =\
123121
test/script_parse_tests.cpp \
124122
test/script_standard_tests.cpp \
125123
test/script_tests.cpp \
124+
test/scriptnum10.h \
126125
test/scriptnum_tests.cpp \
127126
test/serfloat_tests.cpp \
128127
test/serialize_tests.cpp \
@@ -134,21 +133,22 @@ BITCOIN_TESTS =\
134133
test/streams_tests.cpp \
135134
test/sync_tests.cpp \
136135
test/system_tests.cpp \
137-
test/util_threadnames_tests.cpp \
138136
test/timedata_tests.cpp \
139137
test/torcontrol_tests.cpp \
140138
test/transaction_tests.cpp \
141139
test/txindex_tests.cpp \
142-
test/txrequest_tests.cpp \
143140
test/txpackage_tests.cpp \
141+
test/txrequest_tests.cpp \
144142
test/txvalidation_tests.cpp \
145143
test/txvalidationcache_tests.cpp \
146144
test/uint256_tests.cpp \
147145
test/util_tests.cpp \
146+
test/util_threadnames_tests.cpp \
148147
test/validation_block_tests.cpp \
149148
test/validation_chainstate_tests.cpp \
150149
test/validation_chainstatemanager_tests.cpp \
151150
test/validation_flush_tests.cpp \
151+
test/validation_tests.cpp \
152152
test/validationinterface_tests.cpp \
153153
test/versionbits_tests.cpp
154154

src/node/minisketchwrapper.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
#define BITCOIN_NODE_MINISKETCHWRAPPER_H
77

88
#include <minisketch.h>
9+
910
#include <cstddef>
1011
#include <cstdint>
1112

0 commit comments

Comments
 (0)