chancloser: use param instead of constant

The param previously was unused so this was likely an oversight or
copy/paste error.
This does not change any behavior, as the method was always called with
the constant previously used. But it makes things more explicit.
This commit is contained in:
Oliver Gugger
2025-07-18 13:09:23 +02:00
parent 5c62e904e2
commit 899131f7be

View File

@@ -642,7 +642,7 @@ func (r *rbfCloserTestHarness) assertSingleRbfIteration(
// We'll now send in the send offer event, which should trigger 1/2 of
// the RBF loop, ending us in the LocalOfferSent state.
r.expectHalfSignerIteration(
initEvent, balanceAfterClose, absoluteFee, noDustExpect,
initEvent, balanceAfterClose, absoluteFee, dustExpect,
iteration,
)