mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-15 14:22:37 -03:00
15 lines
560 B
C++
15 lines
560 B
C++
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
||
|
// Copyright (c) 2009-2018 The Bitcoin Core developers
|
||
|
// 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);
|
||
|
unsigned int nBytesPerSigOp = DEFAULT_BYTES_PER_SIGOP;
|