From 899131f7be90dfce628eb5ba8b58722d7f7f8727 Mon Sep 17 00:00:00 2001 From: Oliver Gugger Date: Fri, 18 Jul 2025 13:09:23 +0200 Subject: [PATCH] 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. --- lnwallet/chancloser/rbf_coop_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lnwallet/chancloser/rbf_coop_test.go b/lnwallet/chancloser/rbf_coop_test.go index 58b02f6ea..7e09e2059 100644 --- a/lnwallet/chancloser/rbf_coop_test.go +++ b/lnwallet/chancloser/rbf_coop_test.go @@ -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, )