All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
- Added a
PrecomputedTransactionDatastruct for holding transaction hashes required for script verification. It may be initialized with and without an array of outputs spent by the transaction. If no outputs are passed, no taproot verification is possible. - Added a
BlockHeaderstruct for holding block header data. This may be used to retrieve block header struct internals, and to process block headers for the purpose of "headers-first" synchronization. Also add aChainstateManagermethod to process block headers, i.e. validate and add them to its internal block tree data structure.
- Updated to latest libbitcoinkernel-sys with btck_PrecomputedTransactionData` changes.
- The
verifyfunction now takes aPrecomputedTransactionDatainstead of an array of outputs spent by the transaction. The user is now always required to pass this struct to the function. This is done to encourage its use and protect against quadratic hashing costs.
- Updated to latest libbitcoinkernel-sys with cmake packaging include fix.