-
Notifications
You must be signed in to change notification settings - Fork 137
Add ChainPorter pre-broadcast validation for pre-anchored sends
#1875
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
Summary of ChangesHello @ffranr, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request resolves an issue where pre-anchored transaction sends could fail due to an "anchor input script mismatch" during the final pre-broadcast validation in Highlights
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Code Review
This pull request introduces a pre-broadcast validation step for pre-anchored sends in ChainPorter to fix a bug where validation would fail due to missing information about purged assets. The changes are well-structured, extracting the logic to collect purged assets into a new collectPurgedAssets function and correctly plumbing this information through the RPC layer down to the ChainPorter. The refactoring is clean and the fix appears correct and robust. I have one minor suggestion for improving code readability.
| for key := range assets { | ||
| purgedAssets[outpoint] = append( | ||
| purgedAssets[outpoint], assets[key], | ||
| ) | ||
| } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This inner loop can be simplified by iterating over the map's values directly, instead of its keys. This is more idiomatic and slightly more readable.
| for key := range assets { | |
| purgedAssets[outpoint] = append( | |
| purgedAssets[outpoint], assets[key], | |
| ) | |
| } | |
| for _, asset := range assets { | |
| purgedAssets[outpoint] = append( | |
| purgedAssets[outpoint], asset, | |
| ) | |
| } |
9f385e4 to
c1e9b99
Compare
Introduce SendStateVerifyPreBroadcast to handle the final verification step before broadcasting. This isolates the logic from earlier states and improves clarity in the send flow. Subsequent commits will extend this state with additional proof verification logic.
We will later make use of the purged asset set at validateInputAssets callsites.
Return the pruned leaves discovered in rpcServer.validateInputAssets and store them in the pre-anchored parcel so ChainPorter can include them when re-running ValidateAnchorInputs. PublishAndLogTransfer now forwards that map, sendPackage/ChainPorter merge it with any locally derived commitments, and other callers keep passing nil when they still have the full taproot input state.
c1e9b99 to
c715986
Compare
Pull Request Test Coverage Report for Build 19502103674Details
💛 - Coveralls |
SendStateVerifyPreBroadcastsoChainPorterre-validates anchor inputs/outputs immediately before broadcast, covering the pre-anchored RPC path that previously skipped this checkvalidateInputAssetsto expose the purged/tombstone assets it already collects, ensuring the RPC layer can pass the complete tap tree data intoChainPorter’s new validation statePublishAndLogTransfer→ pre-anchored parcel →sendPackage, allowing the new pre-broadcast validation to succeed even when the original input commitments aren’t locally available