chanfunding: fix typo

This commit is contained in:
Slyghtning 2023-06-11 12:29:20 +02:00
parent f0579cc509
commit baa1419187
No known key found for this signature in database
GPG Key ID: F82D456EA023C9BF

View File

@ -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)
}