aboutsummaryrefslogtreecommitdiff
path: root/src/validation.h
diff options
context:
space:
mode:
authorglozow <gloriajzhao@gmail.com>2021-11-30 11:21:02 +0000
committerglozow <gloriajzhao@gmail.com>2021-11-30 11:56:46 +0000
commit1b3a11e126b258fba975ed7c452221608f2c5472 (patch)
treecb15b7aebd9f281a7fc41d57c8c6521f40c03762 /src/validation.h
parente521c5589e253b1a6631d085b3ac578751883082 (diff)
downloadbitcoin-1b3a11e126b258fba975ed7c452221608f2c5472.tar.xz
MOVEONLY: TestLockPointValidity to txmempool
Diffstat (limited to 'src/validation.h')
-rw-r--r--src/validation.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/validation.h b/src/validation.h
index 21cd389757..a81188b5f2 100644
--- a/src/validation.h
+++ b/src/validation.h
@@ -250,11 +250,6 @@ PackageMempoolAcceptResult ProcessNewPackage(CChainState& active_chainstate, CTx
bool CheckFinalTx(const CBlockIndex* active_chain_tip, const CTransaction &tx, int flags = -1) EXCLUSIVE_LOCKS_REQUIRED(cs_main);
/**
- * Test whether the LockPoints height and time are still valid on the current chain
- */
-bool TestLockPointValidity(CChain& active_chain, const LockPoints* lp) EXCLUSIVE_LOCKS_REQUIRED(cs_main);
-
-/**
* Check if transaction will be BIP68 final in the next block to be created on top of tip.
* @param[in] tip Chain tip to check tx sequence locks against. For example,
* the tip of the current active chain.