-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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
Send subscribed tx notifications in block connected notification #602
Comments
I'd also like to note that while btcwallet can attempt to combine all of these notifications into a single one so it can process one block at a time, besides being totally silly (why combine what was already combined earlier) I'm not even sure it's possible to do in all cases since transaction notifications from the rescan also make use of the same recvtx/redeemingtx notifications. My change will leave those be, and wallet will treat them as loose transactions not associated with the attached block notification. |
This is a breaking change as it removes the recvtx/redeemingtx notifications for transactions from blocks attached to the main chain. Fixes btcsuite#602.
This is a breaking change as it removes the recvtx/redeemingtx notifications for transactions from blocks attached to the main chain. Fixes btcsuite#602.
This is a breaking change as it removes the recvtx/redeemingtx notifications for transactions from blocks attached to the main chain. Fixes btcsuite#602.
This will be required for upcoming changes to btcwallet to the processing of transaction notifications.
I'll begin work on this and create a PR, but it will be a breaking API change (no more recvtx/redeemingtx notifications for transactions from an attached block) and can't be merged until the wallet changes are ready.
The text was updated successfully, but these errors were encountered: