-
Notifications
You must be signed in to change notification settings - Fork 60
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
feat(wallet): input resolver now searches TX history if input cant be found in current UTXO set #1526
feat(wallet): input resolver now searches TX history if input cant be found in current UTXO set #1526
Conversation
|
e7f5759
to
3613014
Compare
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.
Nice work! 🚀
… found in current UTXO set
fb0f200
to
e452da3
Compare
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.
🙌
Context
Input resolver currently can only resolve inputs as long as they are part of the UTXO set of the wallet. However if we want to resolve inputs that were already spent (I.E to render tx history), we need to also search in TX history.
Proposed Solution
Input resolver now searches tx history.