Details
- Reviewers
PiRK - Group Reviewers
Restricted Project - Maniphest Tasks
- Restricted Maniphest Task
- Commits
- rABC5794e8338bb8: [avalanche] Send proof inventories
ninja all check-all
Diff Detail
- Repository
- rABC Bitcoin ABC
- Lint
Lint Not Applicable - Unit
Tests Not Applicable
Event Timeline
Note to reviewers:
This supersedes D9489 and D9493. I deliberately chose to not split apart the filtering of the peer's known proof (was D9493) because in the end I don't think it makes the review easier, but quite the opposite. By keeping it together with the inv message sending it makes it easier to compare with what is done for the proofs invs.
The broadcasting feature detailed in D9489 will be added in another diff.
src/avalanche/processor.cpp | ||
---|---|---|
502 ↗ | (On Diff #28823) | I'm not sure about this. We just send the inventory, but there is no confirmation that the node received the message successfully. |
src/avalanche/processor.cpp | ||
---|---|---|
502 ↗ | (On Diff #28823) | Nevermind, my reasoning was backwards. A transaction can only be requested after we know it has been announced, so it makes senses to add it to the filter before the peers send the GETDATA request. |
I should probably manage the loop delay first before enabling all this, will update/rebase once done
src/avalanche/processor.cpp | ||
---|---|---|
502 ↗ | (On Diff #28823) | It's done the same for txs but the filter is filled directly with no call to AddKnownTx which makes it difficult to find: https://reviews.bitcoinabc.org/source/bitcoin-abc/browse/master/src/net_processing.cpp$5452 |