# Conflicts: # .travis.yml # Makefile.am # README.md # configure.ac # depends/Makefile # depends/builders/darwin.mk # depends/funcs.mk # depends/hosts/darwin.mk # depends/packages/googlemock.mk # depends/packages/googletest.mk # depends/packages/libsnark.mk # depends/packages/libsodium.mk # depends/packages/packages.mk # depends/packages/rust.mk # src/Makefile.am # src/Makefile.gtest.include # src/chainparams.cpp # src/chainparams.h # src/checkpoints.h # src/clientversion.h # src/coins.cpp # src/consensus/consensus.h # src/gtest/test_mempool.cpp # src/httprpc.cpp # src/init.cpp # src/komodo-tx.cpp # src/main.cpp # src/miner.cpp # src/policy/fees.cpp # src/policy/fees.h # src/rpcmining.cpp # src/rpcrawtransaction.cpp # src/rpcserver.cpp # src/test/policyestimator_tests.cpp # src/test/rpc_wallet_tests.cpp # src/test/transaction_tests.cpp # src/txdb.cpp # src/txmempool.cpp # src/wallet/asyncrpcoperation_sendmany.cpp # src/wallet/rpcwallet.cpp # src/wallet/wallet.cpp # src/wallet/wallet.h # src/zcash/CreateJoinSplit.cpp # zcutil/build.sh
38 lines
1.8 KiB
C
38 lines
1.8 KiB
C
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
// Copyright (c) 2009-2014 The Bitcoin Core developers
|
|
// Distributed under the MIT software license, see the accompanying
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
#ifndef BITCOIN_CONSENSUS_CONSENSUS_H
|
|
#define BITCOIN_CONSENSUS_CONSENSUS_H
|
|
|
|
/** The minimum allowed block version (network rule) */
|
|
static const int32_t MIN_BLOCK_VERSION = 4;
|
|
/** The minimum allowed transaction version (network rule) */
|
|
static const int32_t SPROUT_MIN_TX_VERSION = 1;
|
|
/** The minimum allowed transaction version (network rule) */
|
|
static const int32_t OVERWINTER_MIN_TX_VERSION = 3;
|
|
/** The maximum allowed transaction version (network rule) */
|
|
static const int32_t OVERWINTER_MAX_TX_VERSION = 3;
|
|
/** The maximum allowed size for a serialized block, in bytes (network rule) */
|
|
static const unsigned int MAX_BLOCK_SIZE = 2000000;
|
|
/** The maximum allowed number of signature check operations in a block (network rule) */
|
|
static const unsigned int MAX_BLOCK_SIGOPS = 20000;
|
|
/** The maximum size of a transaction (network rule) */
|
|
static const unsigned int MAX_TX_SIZE = 100000;
|
|
/** Coinbase transaction outputs can only be spent after this number of new blocks (network rule) */
|
|
extern int COINBASE_MATURITY;
|
|
/** The minimum value which is invalid for expiry height, used by CTransaction and CMutableTransaction */
|
|
static constexpr uint32_t TX_EXPIRY_HEIGHT_THRESHOLD = 500000000;
|
|
|
|
/** Flags for LockTime() */
|
|
enum {
|
|
/* Use GetMedianTimePast() instead of nTime for end point timestamp. */
|
|
LOCKTIME_MEDIAN_TIME_PAST = (1 << 1),
|
|
};
|
|
|
|
/** Used as the flags parameter to CheckFinalTx() in non-consensus code */
|
|
static const unsigned int STANDARD_LOCKTIME_VERIFY_FLAGS = LOCKTIME_MEDIAN_TIME_PAST;
|
|
|
|
#endif // BITCOIN_CONSENSUS_CONSENSUS_H
|