-
Notifications
You must be signed in to change notification settings - Fork 37.7k
fuzz: wallet, add target for fees
#27647
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
The following sections might be updated with supplementary metadata relevant to reviewers and maintainers. ReviewsSee the guideline for information on the review process.
If your review is incorrectly listed, please react with 👎 to this comment and the bot will ignore it on the next update. |
6372a73
to
aaa3a5a
Compare
6b8ebe8
to
b00b17d
Compare
b00b17d
to
583ccc7
Compare
583ccc7
to
604f869
Compare
Force-pushed addressing @MarcoFalke's review.
|
604f869
to
93c0db7
Compare
Force-pushed addressing @MarcoFalke's review.
|
11545e9
to
aebce01
Compare
Force-pushed
Thanks @MarcoFalke for the review |
CI failure seems unrelated |
7cccbec
to
4018eb2
Compare
Force-pushed to replace |
4018eb2
to
76bfccb
Compare
Force-pushed removing the unused variable |
76bfccb
to
4da8d6b
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.
lgtm ACK 4da8d6b
left some nits, didn't test
4da8d6b
to
171502b
Compare
Force-pushed addressing #27647 (comment) and #27647 (comment) CI error is unrelated. |
171502b
to
162602b
Compare
ACK 162602b |
lgtm ACK 162602b |
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 ACK 162602b
162602b fuzz: wallet, add target for `fees` (brunoerg) Pull request description: This PR adds fuzz coverage for `wallet/fees`. Some functions may use or not (non default) values from `wallet`, `CCoinControl` or `FeeCalculation`. So the logic is to make the test sometimes fill up some attributes and others no. Obs: As soon as this PR gets some reviews, I can open the proper PR to `qa-assets` as well. ACKs for top commit: Xekyo: ACK 162602b MarcoFalke: lgtm ACK 162602b dergoegge: Code review ACK 162602b Tree-SHA512: 6545802f27aafb60bf5a119af514e9425b643780dea6650bba766bb5be813f2aaddb7afc7f0efa2943ceb26f5ea08b42c95a3c0df897493c71f2d2f99e9e4236
When adding a fuzz target it makes sense to run it with the sanitizers enabled, so that bugs are caught and fixed either before or with adding the target.
|
This PR adds fuzz coverage for
wallet/fees
. Some functions may use or not (non default) values fromwallet
,CCoinControl
orFeeCalculation
. So the logic is to make the test sometimes fill up some attributes and others no.Obs: As soon as this PR gets some reviews, I can open the proper PR to
qa-assets
as well.