diff options
author | Carl Dong <contact@carldong.me> | 2020-09-16 17:40:00 -0400 |
---|---|---|
committer | Carl Dong <contact@carldong.me> | 2021-02-18 14:49:10 -0500 |
commit | 71734c65dc491a4bb654ccbb7a1dd0e12131cee4 (patch) | |
tree | 96da01e7a131140c02a2085711ec8b17ec927493 /src/validation.h | |
parent | 120aaba9ac41af71a760aa0969dd090e96786fb3 (diff) |
validation: Pass in chain to ::TestLockPointValidity
Diffstat (limited to 'src/validation.h')
-rw-r--r-- | src/validation.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/validation.h b/src/validation.h index 739f4f1d99..7fc0d31c70 100644 --- a/src/validation.h +++ b/src/validation.h @@ -253,7 +253,7 @@ bool CheckFinalTx(const CBlockIndex* active_chain_tip, const CTransaction &tx, i /** * Test whether the LockPoints height and time are still valid on the current chain */ -bool TestLockPointValidity(const LockPoints* lp) EXCLUSIVE_LOCKS_REQUIRED(cs_main); +bool TestLockPointValidity(CChain& active_chain, const LockPoints* lp) EXCLUSIVE_LOCKS_REQUIRED(cs_main); /** * Check if transaction will be BIP 68 final in the next block to be created. |