Home
last modified time | relevance | path

Searched refs:active_chain_tip (Results 1 – 12 of 12) sorted by relevance

/dports/net-p2p/bitcoin/bitcoin-22.0/src/test/
H A Dminer_tests.cpp85 static CBlockIndex CreateBlockIndex(int nHeight, CBlockIndex* active_chain_tip) EXCLUSIVE_LOCKS_REQ… in CreateBlockIndex() argument
89 index.pprev = active_chain_tip; in CreateBlockIndex()
445 CBlockIndex* active_chain_tip = m_node.chainman->ActiveChain().Tip(); in BOOST_AUTO_TEST_CASE() local
446 …ransaction(tx), flags, prevheights, CreateBlockIndex(active_chain_tip->nHeight + 2, active_chain_t… in BOOST_AUTO_TEST_CASE()
462 CBlockIndex* active_chain_tip = m_node.chainman->ActiveChain().Tip(); in BOOST_AUTO_TEST_CASE() local
463 …ransaction(tx), flags, prevheights, CreateBlockIndex(active_chain_tip->nHeight + 1, active_chain_t… in BOOST_AUTO_TEST_CASE()
/dports/net-p2p/bitcoin-utils/bitcoin-22.0/src/test/
H A Dminer_tests.cpp85 static CBlockIndex CreateBlockIndex(int nHeight, CBlockIndex* active_chain_tip) EXCLUSIVE_LOCKS_REQ… in CreateBlockIndex() argument
89 index.pprev = active_chain_tip; in CreateBlockIndex()
445 CBlockIndex* active_chain_tip = m_node.chainman->ActiveChain().Tip(); in BOOST_AUTO_TEST_CASE() local
446 …ransaction(tx), flags, prevheights, CreateBlockIndex(active_chain_tip->nHeight + 2, active_chain_t… in BOOST_AUTO_TEST_CASE()
462 CBlockIndex* active_chain_tip = m_node.chainman->ActiveChain().Tip(); in BOOST_AUTO_TEST_CASE() local
463 …ransaction(tx), flags, prevheights, CreateBlockIndex(active_chain_tip->nHeight + 1, active_chain_t… in BOOST_AUTO_TEST_CASE()
/dports/net-p2p/bitcoin-daemon/bitcoin-22.0/src/test/
H A Dminer_tests.cpp85 static CBlockIndex CreateBlockIndex(int nHeight, CBlockIndex* active_chain_tip) EXCLUSIVE_LOCKS_REQ… in CreateBlockIndex() argument
89 index.pprev = active_chain_tip; in CreateBlockIndex()
445 CBlockIndex* active_chain_tip = m_node.chainman->ActiveChain().Tip(); in BOOST_AUTO_TEST_CASE() local
446 …ransaction(tx), flags, prevheights, CreateBlockIndex(active_chain_tip->nHeight + 2, active_chain_t… in BOOST_AUTO_TEST_CASE()
462 CBlockIndex* active_chain_tip = m_node.chainman->ActiveChain().Tip(); in BOOST_AUTO_TEST_CASE() local
463 …ransaction(tx), flags, prevheights, CreateBlockIndex(active_chain_tip->nHeight + 1, active_chain_t… in BOOST_AUTO_TEST_CASE()
/dports/net-p2p/bitcoin-utils/bitcoin-22.0/src/rpc/
H A Dblockchain.cpp1350 static void SoftForkDescPushBack(const CBlockIndex* active_chain_tip, UniValue& softforks, const Co… in SoftForkDescPushBack() argument
1360 rv.pushKV("active", DeploymentActiveAfter(active_chain_tip, params, dep)); in SoftForkDescPushBack()
1365 static void SoftForkDescPushBack(const CBlockIndex* active_chain_tip, UniValue& softforks, const Co… in SoftForkDescPushBack() argument
1372 …const ThresholdState thresholdState = g_versionbitscache.State(active_chain_tip, consensusParams, … in SoftForkDescPushBack()
1386 … int64_t since_height = g_versionbitscache.StateSinceHeight(active_chain_tip, consensusParams, id); in SoftForkDescPushBack()
1391 … BIP9Stats statsStruct = g_versionbitscache.Statistics(active_chain_tip, consensusParams, id); in SoftForkDescPushBack()
/dports/net-p2p/bitcoin/bitcoin-22.0/src/rpc/
H A Dblockchain.cpp1350 static void SoftForkDescPushBack(const CBlockIndex* active_chain_tip, UniValue& softforks, const Co…
1360 rv.pushKV("active", DeploymentActiveAfter(active_chain_tip, params, dep));
1365 static void SoftForkDescPushBack(const CBlockIndex* active_chain_tip, UniValue& softforks, const Co…
1372 …const ThresholdState thresholdState = g_versionbitscache.State(active_chain_tip, consensusParams, …
1386 … int64_t since_height = g_versionbitscache.StateSinceHeight(active_chain_tip, consensusParams, id);
1391 … BIP9Stats statsStruct = g_versionbitscache.Statistics(active_chain_tip, consensusParams, id);
/dports/net-p2p/bitcoin-daemon/bitcoin-22.0/src/rpc/
H A Dblockchain.cpp1350 static void SoftForkDescPushBack(const CBlockIndex* active_chain_tip, UniValue& softforks, const Co…
1360 rv.pushKV("active", DeploymentActiveAfter(active_chain_tip, params, dep));
1365 static void SoftForkDescPushBack(const CBlockIndex* active_chain_tip, UniValue& softforks, const Co…
1372 …const ThresholdState thresholdState = g_versionbitscache.State(active_chain_tip, consensusParams, …
1386 … int64_t since_height = g_versionbitscache.StateSinceHeight(active_chain_tip, consensusParams, id);
1391 … BIP9Stats statsStruct = g_versionbitscache.Statistics(active_chain_tip, consensusParams, id);
/dports/net-p2p/bitcoin-daemon/bitcoin-22.0/src/
H A Dvalidation.h262 bool CheckFinalTx(const CBlockIndex* active_chain_tip, const CTransaction &tx, int flags = -1) EXCL…
H A Dvalidation.cpp181 bool CheckFinalTx(const CBlockIndex* active_chain_tip, const CTransaction &tx, int flags) in CheckFinalTx() argument
184 assert(active_chain_tip); // TODO: Make active_chain_tip a reference in CheckFinalTx()
200 const int nBlockHeight = active_chain_tip->nHeight + 1; in CheckFinalTx()
208 ? active_chain_tip->GetMedianTimePast() in CheckFinalTx()
/dports/net-p2p/bitcoin-utils/bitcoin-22.0/src/
H A Dvalidation.h262 bool CheckFinalTx(const CBlockIndex* active_chain_tip, const CTransaction &tx, int flags = -1) EXCL…
H A Dvalidation.cpp181 bool CheckFinalTx(const CBlockIndex* active_chain_tip, const CTransaction &tx, int flags) in CheckFinalTx() argument
184 assert(active_chain_tip); // TODO: Make active_chain_tip a reference in CheckFinalTx()
200 const int nBlockHeight = active_chain_tip->nHeight + 1; in CheckFinalTx()
208 ? active_chain_tip->GetMedianTimePast() in CheckFinalTx()
/dports/net-p2p/bitcoin/bitcoin-22.0/src/
H A Dvalidation.h262 bool CheckFinalTx(const CBlockIndex* active_chain_tip, const CTransaction &tx, int flags = -1) EXCL…
H A Dvalidation.cpp181 bool CheckFinalTx(const CBlockIndex* active_chain_tip, const CTransaction &tx, int flags) in CheckFinalTx() argument
184 assert(active_chain_tip); // TODO: Make active_chain_tip a reference in CheckFinalTx()
200 const int nBlockHeight = active_chain_tip->nHeight + 1; in CheckFinalTx()
208 ? active_chain_tip->GetMedianTimePast() in CheckFinalTx()