File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff 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 }
Original file line number Diff line number Diff 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 )
You can’t perform that action at this time.
0 commit comments