6cb60f3e6ddoc/release-notes: Add new listunspent fields (Luke Dashjr)0be2f17ef5QA: Add tests for listunspent ancestor{count,size,fees} to mempool_packages (Luke Dashjr)6966e80f45RPC: Add ancestor{count,size,fees} to listunspent output (Luke Dashjr)3f77dfdaf0Expose ancestorsize and ancestorfees via getTransactionAncestry (Luke Dashjr) Pull request description: Requested by a user ACKs for top commit: prayank23: reACK6cb60f3e6dfjahr: Code review re-ACK6cb60f3e6dkiminuo: ACK [6cb60f3](6cb60f3e6d) achow101: Code Review ACK6cb60f3e6dnaumenkogs: ACK6cb60f3e6ddarosior: utACK6cb60f3e6dTree-SHA512: 5d16e5799558691e5853ab7ea2cc85514cb45da3ce69134d855c71845beef32ec6af5ab28d4462683e9800c8ea126f162773a9d3d5660edac08fd8edbfeda173
Internal c++ interfaces
The following interfaces are defined here:
-
Chain— used by wallet to access blockchain and mempool state. Added in #14437, #14711, #15288, and #10973. -
ChainClient— used by node to start & stopChainclients. Added in #14437. -
Node— used by GUI to start & stop bitcoin node. Added in #10244. -
Handler— returned byhandleEventmethods on interfaces above and used to manage lifetimes of event handlers. -
Init— used by multiprocess code to access interfaces above on startup. Added in #19160. -
Ipc— used by multiprocess code to accessInitinterface across processes. Added in #19160.
The interfaces above define boundaries between major components of bitcoin code (node, wallet, and gui), making it possible for them to run in different processes, and be tested, developed, and understood independently. These interfaces are not currently designed to be stable or to be used externally.