Skip to content

Commit d917e13

Browse files
committed
multi: run make fmt
1 parent 0d1e611 commit d917e13

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

cmd/litd/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ func main() {
1414
err := terminal.New().Run()
1515
var flagErr *flags.Error
1616
isFlagErr := errors.As(err, &flagErr)
17-
if err != nil && (!isFlagErr || flagErr.Type != flags.ErrHelp) {
17+
if err != nil && (!isFlagErr || flagErr.Type != flags.ErrHelp) {
1818
_, _ = fmt.Fprintln(os.Stderr, err)
1919
os.Exit(1)
2020
}

terminal.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ func (g *LightningTerminal) Run() error {
191191
// Now start the RPC proxy that will handle all incoming gRPC, grpc-web
192192
// and REST requests. We also start the main web server that dispatches
193193
// requests either to the static UI file server or the RPC proxy. This
194-
// makes it possible to unlock lnd through the UI.
194+
// makes it possible to unlock lnd through the UI.
195195
if err := g.rpcProxy.Start(); err != nil {
196196
return fmt.Errorf("error starting lnd gRPC proxy server: %v",
197197
err)

0 commit comments

Comments
 (0)