mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-02 09:46:52 -05:00
rename policy/v3_policy.* to policy/truc_policy.*
This commit is contained in:
parent
9c5cdf07f3
commit
f543852a89
8 changed files with 13 additions and 13 deletions
|
@ -243,7 +243,6 @@ BITCOIN_CORE_H = \
|
||||||
node/warnings.h \
|
node/warnings.h \
|
||||||
noui.h \
|
noui.h \
|
||||||
outputtype.h \
|
outputtype.h \
|
||||||
policy/v3_policy.h \
|
|
||||||
policy/feerate.h \
|
policy/feerate.h \
|
||||||
policy/fees.h \
|
policy/fees.h \
|
||||||
policy/fees_args.h \
|
policy/fees_args.h \
|
||||||
|
@ -251,6 +250,7 @@ BITCOIN_CORE_H = \
|
||||||
policy/policy.h \
|
policy/policy.h \
|
||||||
policy/rbf.h \
|
policy/rbf.h \
|
||||||
policy/settings.h \
|
policy/settings.h \
|
||||||
|
policy/truc_policy.h \
|
||||||
pow.h \
|
pow.h \
|
||||||
protocol.h \
|
protocol.h \
|
||||||
psbt.h \
|
psbt.h \
|
||||||
|
@ -447,12 +447,12 @@ libbitcoin_node_a_SOURCES = \
|
||||||
node/validation_cache_args.cpp \
|
node/validation_cache_args.cpp \
|
||||||
node/warnings.cpp \
|
node/warnings.cpp \
|
||||||
noui.cpp \
|
noui.cpp \
|
||||||
policy/v3_policy.cpp \
|
|
||||||
policy/fees.cpp \
|
policy/fees.cpp \
|
||||||
policy/fees_args.cpp \
|
policy/fees_args.cpp \
|
||||||
policy/packages.cpp \
|
policy/packages.cpp \
|
||||||
policy/rbf.cpp \
|
policy/rbf.cpp \
|
||||||
policy/settings.cpp \
|
policy/settings.cpp \
|
||||||
|
policy/truc_policy.cpp \
|
||||||
pow.cpp \
|
pow.cpp \
|
||||||
rest.cpp \
|
rest.cpp \
|
||||||
rpc/blockchain.cpp \
|
rpc/blockchain.cpp \
|
||||||
|
@ -707,9 +707,9 @@ libbitcoin_common_a_SOURCES = \
|
||||||
netbase.cpp \
|
netbase.cpp \
|
||||||
net_permissions.cpp \
|
net_permissions.cpp \
|
||||||
outputtype.cpp \
|
outputtype.cpp \
|
||||||
policy/v3_policy.cpp \
|
|
||||||
policy/feerate.cpp \
|
policy/feerate.cpp \
|
||||||
policy/policy.cpp \
|
policy/policy.cpp \
|
||||||
|
policy/truc_policy.cpp \
|
||||||
protocol.cpp \
|
protocol.cpp \
|
||||||
psbt.cpp \
|
psbt.cpp \
|
||||||
rpc/external_signer.cpp \
|
rpc/external_signer.cpp \
|
||||||
|
@ -955,12 +955,12 @@ libbitcoinkernel_la_SOURCES = \
|
||||||
node/blockstorage.cpp \
|
node/blockstorage.cpp \
|
||||||
node/chainstate.cpp \
|
node/chainstate.cpp \
|
||||||
node/utxo_snapshot.cpp \
|
node/utxo_snapshot.cpp \
|
||||||
policy/v3_policy.cpp \
|
|
||||||
policy/feerate.cpp \
|
policy/feerate.cpp \
|
||||||
policy/packages.cpp \
|
policy/packages.cpp \
|
||||||
policy/policy.cpp \
|
policy/policy.cpp \
|
||||||
policy/rbf.cpp \
|
policy/rbf.cpp \
|
||||||
policy/settings.cpp \
|
policy/settings.cpp \
|
||||||
|
policy/truc_policy.cpp \
|
||||||
pow.cpp \
|
pow.cpp \
|
||||||
primitives/block.cpp \
|
primitives/block.cpp \
|
||||||
primitives/transaction.cpp \
|
primitives/transaction.cpp \
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
// Distributed under the MIT software license, see the accompanying
|
// Distributed under the MIT software license, see the accompanying
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
#include <policy/v3_policy.h>
|
#include <policy/truc_policy.h>
|
||||||
|
|
||||||
#include <coins.h>
|
#include <coins.h>
|
||||||
#include <consensus/amount.h>
|
#include <consensus/amount.h>
|
|
@ -2,8 +2,8 @@
|
||||||
// Distributed under the MIT software license, see the accompanying
|
// Distributed under the MIT software license, see the accompanying
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
#ifndef BITCOIN_POLICY_V3_POLICY_H
|
#ifndef BITCOIN_POLICY_TRUC_POLICY_H
|
||||||
#define BITCOIN_POLICY_V3_POLICY_H
|
#define BITCOIN_POLICY_TRUC_POLICY_H
|
||||||
|
|
||||||
#include <consensus/amount.h>
|
#include <consensus/amount.h>
|
||||||
#include <policy/packages.h>
|
#include <policy/packages.h>
|
||||||
|
@ -90,4 +90,4 @@ std::optional<std::string> PackageV3Checks(const CTransactionRef& ptx, int64_t v
|
||||||
const Package& package,
|
const Package& package,
|
||||||
const CTxMemPool::setEntries& mempool_ancestors);
|
const CTxMemPool::setEntries& mempool_ancestors);
|
||||||
|
|
||||||
#endif // BITCOIN_POLICY_V3_POLICY_H
|
#endif // BITCOIN_POLICY_TRUC_POLICY_H
|
|
@ -6,7 +6,7 @@
|
||||||
#include <node/context.h>
|
#include <node/context.h>
|
||||||
#include <node/mempool_args.h>
|
#include <node/mempool_args.h>
|
||||||
#include <node/miner.h>
|
#include <node/miner.h>
|
||||||
#include <policy/v3_policy.h>
|
#include <policy/truc_policy.h>
|
||||||
#include <test/fuzz/FuzzedDataProvider.h>
|
#include <test/fuzz/FuzzedDataProvider.h>
|
||||||
#include <test/fuzz/fuzz.h>
|
#include <test/fuzz/fuzz.h>
|
||||||
#include <test/fuzz/util.h>
|
#include <test/fuzz/util.h>
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
#include <node/context.h>
|
#include <node/context.h>
|
||||||
#include <node/mempool_args.h>
|
#include <node/mempool_args.h>
|
||||||
#include <node/miner.h>
|
#include <node/miner.h>
|
||||||
#include <policy/v3_policy.h>
|
#include <policy/truc_policy.h>
|
||||||
#include <test/fuzz/FuzzedDataProvider.h>
|
#include <test/fuzz/FuzzedDataProvider.h>
|
||||||
#include <test/fuzz/fuzz.h>
|
#include <test/fuzz/fuzz.h>
|
||||||
#include <test/fuzz/util.h>
|
#include <test/fuzz/util.h>
|
||||||
|
|
|
@ -4,9 +4,9 @@
|
||||||
|
|
||||||
#include <consensus/validation.h>
|
#include <consensus/validation.h>
|
||||||
#include <key_io.h>
|
#include <key_io.h>
|
||||||
#include <policy/v3_policy.h>
|
|
||||||
#include <policy/packages.h>
|
#include <policy/packages.h>
|
||||||
#include <policy/policy.h>
|
#include <policy/policy.h>
|
||||||
|
#include <policy/truc_policy.h>
|
||||||
#include <primitives/transaction.h>
|
#include <primitives/transaction.h>
|
||||||
#include <random.h>
|
#include <random.h>
|
||||||
#include <script/script.h>
|
#include <script/script.h>
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
#include <node/context.h>
|
#include <node/context.h>
|
||||||
#include <node/mempool_args.h>
|
#include <node/mempool_args.h>
|
||||||
#include <policy/rbf.h>
|
#include <policy/rbf.h>
|
||||||
#include <policy/v3_policy.h>
|
#include <policy/truc_policy.h>
|
||||||
#include <txmempool.h>
|
#include <txmempool.h>
|
||||||
#include <util/check.h>
|
#include <util/check.h>
|
||||||
#include <util/time.h>
|
#include <util/time.h>
|
||||||
|
|
|
@ -35,7 +35,7 @@
|
||||||
#include <policy/policy.h>
|
#include <policy/policy.h>
|
||||||
#include <policy/rbf.h>
|
#include <policy/rbf.h>
|
||||||
#include <policy/settings.h>
|
#include <policy/settings.h>
|
||||||
#include <policy/v3_policy.h>
|
#include <policy/truc_policy.h>
|
||||||
#include <pow.h>
|
#include <pow.h>
|
||||||
#include <primitives/block.h>
|
#include <primitives/block.h>
|
||||||
#include <primitives/transaction.h>
|
#include <primitives/transaction.h>
|
||||||
|
|
Loading…
Add table
Reference in a new issue