diff options
author | MarcoFalke <falke.marco@gmail.com> | 2018-07-27 14:35:28 -0400 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2018-09-11 12:08:17 -0400 |
commit | fa511e8dad87ddee7bf03b82f2ed69e546021004 (patch) | |
tree | 40cafe3215b8b7af4af4c2d377887d8ffafb13d7 /src/validation.h | |
parent | 362518791ade834d7f1f25b679ba236dcf5c3ad0 (diff) |
Pass tx pool reference into CheckSequenceLocks
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 3df6456eca..d21f0606f9 100644 --- a/src/validation.h +++ b/src/validation.h @@ -347,7 +347,7 @@ bool TestLockPointValidity(const LockPoints* lp) EXCLUSIVE_LOCKS_REQUIRED(cs_mai * * See consensus/consensus.h for flag definitions. */ -bool CheckSequenceLocks(const CTransaction &tx, int flags, LockPoints* lp = nullptr, bool useExistingLockPoints = false) EXCLUSIVE_LOCKS_REQUIRED(cs_main); +bool CheckSequenceLocks(const CTxMemPool& pool, const CTransaction& tx, int flags, LockPoints* lp = nullptr, bool useExistingLockPoints = false) EXCLUSIVE_LOCKS_REQUIRED(cs_main); /** * Closure representing one script verification |