2019-04-02 14:14:58 -04:00
|
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
2019-12-30 22:39:22 +13:00
|
|
|
// Copyright (c) 2009-2019 The Bitcoin Core developers
|
2019-04-02 14:14:58 -04:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
#include <policy/settings.h>
|
|
|
|
|
|
|
|
#include <policy/feerate.h>
|
|
|
|
#include <policy/policy.h>
|
|
|
|
|
|
|
|
bool fIsBareMultisigStd = DEFAULT_PERMIT_BAREMULTISIG;
|
|
|
|
CFeeRate incrementalRelayFee = CFeeRate(DEFAULT_INCREMENTAL_RELAY_FEE);
|
|
|
|
CFeeRate dustRelayFee = CFeeRate(DUST_RELAY_TX_FEE);
|
2022-05-31 13:30:23 +02:00
|
|
|
CFeeRate minRelayTxFee = CFeeRate(DEFAULT_MIN_RELAY_TX_FEE);
|
2019-04-02 14:14:58 -04:00
|
|
|
unsigned int nBytesPerSigOp = DEFAULT_BYTES_PER_SIGOP;
|