Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Support for
testnet4
Block Data Indexing Based on Latestrust-bitcoin
During the development phase, I deployed a
testnet4
full node to test this feature, and everything worked as expected.Changes:
Implementation of
testnet4
Support: This feature is based on the latestrust-bitcoin
. Although the relevant PR has not yet been merged intobitcoin Core
, and thusrust-bitcoin
has not been merged either, the code is stable and functional.API Updates: Updated several API calls that were flagged as deprecated by
rust-bitcoin
.New Cursor for Block parse: Implemented a new cursor for block parse due to the removal of some necessary APIs in the updated
rust-bitcoin
.Ask for advice:
After implementing these changes, everything functions correctly with the default feature set. However, when enabling the
liquid
feature, issues arise because it relies onelements
, which is currently incompatible with the latestrust-bitcoin
. I would appreciate any insights or suggestions on how to resolve this compatibility issue.Thank you for your time and assistance.