Uh oh!
There was an error while loading. Please reload this page.
rustfmt: Reformat the fuzz dir - #3102
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
❗ Your organization needs to install the Codecov GitHub app to enable full functionality. Additional details and impacted files@@ Coverage Diff @@## main #3102 +/- ##
==========================================
+ Coverage 89.80% 89.82% +0.02%
==========================================
Files 119 119 Lines 98070 98070 Branches 98070 98070 ==========================================
+ Hits 88068 88094 +26 + Misses 7421 7399 -22 + Partials 2581 2577 -4 ☔ View full report in Codecov by Sentry. |
f329436 to
ad91338Comparetnull
commented
Jun 6, 2024
Should be good for initial reviews. |
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
8967fc6 to
6b40382Compare
TheBlueMatt
left a comment
There was a problem hiding this comment.
Do you want to go ahead and land all the "simple" stuff (ie everything but full_stack and chanmon_consistency) here and do the rest in a separate PR?
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
tnull
commented
Jun 7, 2024
Now split them out to #3111 and rebased this on top. |
90962df to
f0a01ddCompareUh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
TheBlueMatt
commented
Jun 10, 2024
Ugh, I forgot I also had #3113 lying around locally that was waiting on a now-merged PR... |
TheBlueMatt
commented
Jun 11, 2024
If that's alright. Its more annoying to rebase that than |
tnull
commented
Jun 12, 2024
SGTM |
tnull
commented
Jun 12, 2024
Rebased and addressed comments after #3113 landed. |
b7e1662 to
3aff728CompareUh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
e8d5b76 to
27216d0CompareForce-pushed with this fixup: > git diff-tree -U2 027e9a576 4e9ce52c7diff --git a/fuzz/src/chanmon_consistency.rs b/fuzz/src/chanmon_consistency.rs
index 66ff157e7..c4d179e74 100644
--- a/fuzz/src/chanmon_consistency.rs+++ b/fuzz/src/chanmon_consistency.rs@@ -589,5 +589,14 @@ fn send_hop_noret(
amt: u64, payment_id: &mut u8, payment_idx: &mut u64,
) {
- send_payment(source, dest, dest_chan_id, amt, payment_id, payment_idx);+ send_hop_payment(+ source,+ middle,+ middle_chan_id,+ dest,+ dest_chan_id,+ amt,+ payment_id,+ payment_idx,+ );
} |
TheBlueMatt
left a comment
There was a problem hiding this comment.
Diff from @valentinewallace's ACK is small and its all fuzz code anyway, so not bothering to wait for her to look again.
We run
rustfmton thefuzzdir and make sure that any auto-generated targets are formatted, too.