From 129145c4bd510da269c43534a1daafab7a90787c Mon Sep 17 00:00:00 2001 From: George Tsagkarelis Date: Fri, 12 Apr 2024 16:21:42 +0200 Subject: [PATCH] lnwallet: do not skip feecheck on coin select test --- lnwallet/chanfunding/coin_select_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lnwallet/chanfunding/coin_select_test.go b/lnwallet/chanfunding/coin_select_test.go index 07e359f73d..14cc253e70 100644 --- a/lnwallet/chanfunding/coin_select_test.go +++ b/lnwallet/chanfunding/coin_select_test.go @@ -428,7 +428,7 @@ func TestCalculateChangeAmount(t *testing.T) { changeAmt, needMore, err := CalculateChangeAmount( tc.totalInputAmt, tc.requiredAmt, tc.feeNoChange, tc.feeWithChange, tc.dustLimit, - tc.changeType, + tc.changeType, false, ) if tc.expectErr != "" {