mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-11 12:22:39 -03:00
Make accessing mempool parents and children public
This commit is contained in:
parent
7230187b1d
commit
1f09287c66
1 changed files with 2 additions and 2 deletions
|
@ -375,6 +375,8 @@ public:
|
||||||
};
|
};
|
||||||
typedef std::set<txiter, CompareIteratorByHash> setEntries;
|
typedef std::set<txiter, CompareIteratorByHash> setEntries;
|
||||||
|
|
||||||
|
const setEntries & GetMemPoolParents(txiter entry) const;
|
||||||
|
const setEntries & GetMemPoolChildren(txiter entry) const;
|
||||||
private:
|
private:
|
||||||
typedef std::map<txiter, setEntries, CompareIteratorByHash> cacheMap;
|
typedef std::map<txiter, setEntries, CompareIteratorByHash> cacheMap;
|
||||||
|
|
||||||
|
@ -386,8 +388,6 @@ private:
|
||||||
typedef std::map<txiter, TxLinks, CompareIteratorByHash> txlinksMap;
|
typedef std::map<txiter, TxLinks, CompareIteratorByHash> txlinksMap;
|
||||||
txlinksMap mapLinks;
|
txlinksMap mapLinks;
|
||||||
|
|
||||||
const setEntries & GetMemPoolParents(txiter entry) const;
|
|
||||||
const setEntries & GetMemPoolChildren(txiter entry) const;
|
|
||||||
void UpdateParent(txiter entry, txiter parent, bool add);
|
void UpdateParent(txiter entry, txiter parent, bool add);
|
||||||
void UpdateChild(txiter entry, txiter child, bool add);
|
void UpdateChild(txiter entry, txiter child, bool add);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue