File tree 2 files changed +0
-8
lines changed
2 files changed +0
-8
lines changed Original file line number Diff line number Diff line change @@ -116,9 +116,6 @@ class Chain
116
116
// ! or one of its ancestors.
117
117
virtual std::optional<int > findLocatorFork (const CBlockLocator& locator) = 0;
118
118
119
- // ! Check if transaction will be final given chain height current time.
120
- virtual bool checkFinalTx (const CTransaction& tx) = 0;
121
-
122
119
// ! Return whether node has the block and optionally return block metadata
123
120
// ! or contents.
124
121
virtual bool findBlock (const uint256& hash, const FoundBlock& block={}) = 0;
Original file line number Diff line number Diff line change @@ -486,11 +486,6 @@ class ChainImpl : public Chain
486
486
const CChain& active = Assert (m_node.chainman )->ActiveChain ();
487
487
return active.GetLocator ();
488
488
}
489
- bool checkFinalTx (const CTransaction& tx) override
490
- {
491
- LOCK (cs_main);
492
- return CheckFinalTx (chainman ().ActiveChain ().Tip (), tx);
493
- }
494
489
std::optional<int > findLocatorFork (const CBlockLocator& locator) override
495
490
{
496
491
LOCK (cs_main);
You can’t perform that action at this time.
0 commit comments