-
Notifications
You must be signed in to change notification settings - Fork 46
Implement scantxoutset method and test #428
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
Conversation
|
@tcharding can you have a look at this? I'll fix the merge conflicts when I address any review comments. |
|
Will review this monster when I"m back home. |
|
Reviewed ca3a0fa The commit author is showing as Gideon and so is the co-authored-by tag. |
ca3a0fa to
fce63a5
Compare
|
Suggested changes all made and resolved merge conflicts. |
types/src/v19/blockchain/into.rs
Outdated
| tx_outs: Some(self.txouts), | ||
| height: Some(self.height), | ||
| best_block: Some(bestblock), |
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.
Missed txouts and bestblock here mate.
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.
Thanks, hopefully that's all of them.
types/src/v28/blockchain/into.rs
Outdated
| amount, | ||
| coinbase: Some(self.coinbase), | ||
| height: self.height, | ||
| block_hash: Some(blockhash), |
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.
| block_hash: Some(blockhash), | |
| block_hash: Some(block_hash), |
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.
Done
|
Reviewed fce63a5 |
fce63a5 to
a7415e6
Compare
The method is marked as experimental and was not implemented. Implement the method and all the changes up to v30. Co-authored-by: Jamil Lambert <[email protected]>
a7415e6 to
1e51177
Compare
tcharding
left a comment
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.
ACK 1e51177
|
I removed the mentions from the PR description. They are flagged by the merge script. FTR this is so that if/when people fork this repo and pick up the PR in their fork the mentioned dev doesn't get spammed with notifications. |
The method is marked as experimental and was not implemented.
Implement the method and all the changes up to v30.
Original PR is #164 by GideonBature. Picked up and fixed by jamillambert.