From baa1419187bcdb33664e5efe5b16a960ecb5fa3d Mon Sep 17 00:00:00 2001 From: Slyghtning Date: Sun, 11 Jun 2023 12:29:20 +0200 Subject: [PATCH] chanfunding: fix typo --- lnwallet/chanfunding/coin_select.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lnwallet/chanfunding/coin_select.go b/lnwallet/chanfunding/coin_select.go index 11f764373..2f6f2ad84 100644 --- a/lnwallet/chanfunding/coin_select.go +++ b/lnwallet/chanfunding/coin_select.go @@ -22,7 +22,7 @@ type ErrInsufficientFunds struct { // Error returns a human readable string describing the error. func (e *ErrInsufficientFunds) Error() string { return fmt.Sprintf("not enough witness outputs to create funding "+ - "transaction, need %v only have %v available", + "transaction, need %v only have %v available", e.amountAvailable, e.amountSelected) }