style: Sort file list after rename

This commit is contained in:
MarcoFalke 2021-11-15 13:48:58 +01:00
parent fa53e3a58c
commit fa0739a7d3
No known key found for this signature in database
GPG key ID: CE2B75697E69A548
5 changed files with 6 additions and 6 deletions

View file

@ -166,7 +166,6 @@ BITCOIN_CORE_H = \
mapport.h \ mapport.h \
memusage.h \ memusage.h \
merkleblock.h \ merkleblock.h \
node/miner.h \
net.h \ net.h \
net_permissions.h \ net_permissions.h \
net_processing.h \ net_processing.h \
@ -178,6 +177,7 @@ BITCOIN_CORE_H = \
node/coin.h \ node/coin.h \
node/coinstats.h \ node/coinstats.h \
node/context.h \ node/context.h \
node/miner.h \
node/minisketchwrapper.h \ node/minisketchwrapper.h \
node/psbt.h \ node/psbt.h \
node/transaction.h \ node/transaction.h \
@ -334,7 +334,6 @@ libbitcoin_server_a_SOURCES = \
index/txindex.cpp \ index/txindex.cpp \
init.cpp \ init.cpp \
mapport.cpp \ mapport.cpp \
node/miner.cpp \
net.cpp \ net.cpp \
net_processing.cpp \ net_processing.cpp \
node/blockstorage.cpp \ node/blockstorage.cpp \
@ -342,6 +341,7 @@ libbitcoin_server_a_SOURCES = \
node/coinstats.cpp \ node/coinstats.cpp \
node/context.cpp \ node/context.cpp \
node/interfaces.cpp \ node/interfaces.cpp \
node/miner.cpp \
node/minisketchwrapper.cpp \ node/minisketchwrapper.cpp \
node/psbt.cpp \ node/psbt.cpp \
node/transaction.cpp \ node/transaction.cpp \

View file

@ -29,13 +29,13 @@
#include <interfaces/init.h> #include <interfaces/init.h>
#include <interfaces/node.h> #include <interfaces/node.h>
#include <mapport.h> #include <mapport.h>
#include <node/miner.h>
#include <net.h> #include <net.h>
#include <net_permissions.h> #include <net_permissions.h>
#include <net_processing.h> #include <net_processing.h>
#include <netbase.h> #include <netbase.h>
#include <node/blockstorage.h> #include <node/blockstorage.h>
#include <node/context.h> #include <node/context.h>
#include <node/miner.h>
#include <node/ui_interface.h> #include <node/ui_interface.h>
#include <policy/feerate.h> #include <policy/feerate.h>
#include <policy/fees.h> #include <policy/fees.h>

View file

@ -13,9 +13,9 @@
#include <deploymentinfo.h> #include <deploymentinfo.h>
#include <deploymentstatus.h> #include <deploymentstatus.h>
#include <key_io.h> #include <key_io.h>
#include <node/miner.h>
#include <net.h> #include <net.h>
#include <node/context.h> #include <node/context.h>
#include <node/miner.h>
#include <policy/fees.h> #include <policy/fees.h>
#include <pow.h> #include <pow.h>
#include <rpc/blockchain.h> #include <rpc/blockchain.h>

View file

@ -7,8 +7,8 @@
#include <chainparams.h> #include <chainparams.h>
#include <consensus/merkle.h> #include <consensus/merkle.h>
#include <key_io.h> #include <key_io.h>
#include <node/miner.h>
#include <node/context.h> #include <node/context.h>
#include <node/miner.h>
#include <pow.h> #include <pow.h>
#include <script/standard.h> #include <script/standard.h>
#include <test/util/script.h> #include <test/util/script.h>

View file

@ -13,9 +13,9 @@
#include <crypto/sha256.h> #include <crypto/sha256.h>
#include <init.h> #include <init.h>
#include <interfaces/chain.h> #include <interfaces/chain.h>
#include <node/miner.h>
#include <net.h> #include <net.h>
#include <net_processing.h> #include <net_processing.h>
#include <node/miner.h>
#include <noui.h> #include <noui.h>
#include <policy/fees.h> #include <policy/fees.h>
#include <pow.h> #include <pow.h>