From 659ad459bbc6ae8682a64c51a89007e6ac642e4f Mon Sep 17 00:00:00 2001 From: Keagan McClelland Date: Mon, 29 Jan 2024 19:28:22 -0500 Subject: [PATCH] brontide: placate linter --- peer/brontide.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/peer/brontide.go b/peer/brontide.go index 363ea9eec..07fb5731e 100644 --- a/peer/brontide.go +++ b/peer/brontide.go @@ -2817,16 +2817,16 @@ func chooseDeliveryScript(upfront, return requested, nil } - // If an upfront shutdown script was provided, and the user did not request - // a custom shutdown script, return the upfront address. + // If an upfront shutdown script was provided, and the user did not + // request a custom shutdown script, return the upfront address. if len(requested) == 0 { return upfront, nil } // If both an upfront shutdown script and a custom close script were // provided, error if the user provided shutdown script does not match - // the upfront shutdown script (because closing out to a different script - // would violate upfront shutdown). + // the upfront shutdown script (because closing out to a different + // script would violate upfront shutdown). if !bytes.Equal(upfront, requested) { return nil, chancloser.ErrUpfrontShutdownScriptMismatch }