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() {
14
14
err := terminal .New ().Run ()
15
15
var flagErr * flags.Error
16
16
isFlagErr := errors .As (err , & flagErr )
17
- if err != nil && (! isFlagErr || flagErr .Type != flags .ErrHelp ) {
17
+ if err != nil && (! isFlagErr || flagErr .Type != flags .ErrHelp ) {
18
18
_ , _ = fmt .Fprintln (os .Stderr , err )
19
19
os .Exit (1 )
20
20
}
Original file line number Diff line number Diff line change @@ -191,7 +191,7 @@ func (g *LightningTerminal) Run() error {
191
191
// Now start the RPC proxy that will handle all incoming gRPC, grpc-web
192
192
// and REST requests. We also start the main web server that dispatches
193
193
// 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.
195
195
if err := g .rpcProxy .Start (); err != nil {
196
196
return fmt .Errorf ("error starting lnd gRPC proxy server: %v" ,
197
197
err )
You can’t perform that action at this time.
0 commit comments