File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -375,6 +375,8 @@ class CTxMemPool
375
375
};
376
376
typedef std::set<txiter, CompareIteratorByHash> setEntries;
377
377
378
+ const setEntries & GetMemPoolParents (txiter entry) const ;
379
+ const setEntries & GetMemPoolChildren (txiter entry) const ;
378
380
private:
379
381
typedef std::map<txiter, setEntries, CompareIteratorByHash> cacheMap;
380
382
@@ -386,8 +388,6 @@ class CTxMemPool
386
388
typedef std::map<txiter, TxLinks, CompareIteratorByHash> txlinksMap;
387
389
txlinksMap mapLinks;
388
390
389
- const setEntries & GetMemPoolParents (txiter entry) const ;
390
- const setEntries & GetMemPoolChildren (txiter entry) const ;
391
391
void UpdateParent (txiter entry, txiter parent, bool add);
392
392
void UpdateChild (txiter entry, txiter child, bool add);
393
393
You can’t perform that action at this time.
0 commit comments