Skip to content

Commit c8a6263

Browse files
committed
multi: change grub to litd, fix comments
1 parent b5b5c6a commit c8a6263

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

log.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ import (
1818
)
1919

2020
var (
21-
// log is a logger that is initialized with no output filters. This means the
22-
// package will not perform any logging by default until the caller requests
23-
// it.
21+
// log is a logger that is initialized with no output filters. This
22+
// means the package will not perform any logging by default until the
23+
// caller requests it.
2424
log btclog.Logger
2525
)
2626

@@ -50,7 +50,7 @@ func UseLogger(logger btclog.Logger) {
5050

5151
// SetupLoggers initializes all package-global logger variables.
5252
func SetupLoggers(root *build.RotatingLogWriter) {
53-
// Add the GrUB logger.
53+
// Add the lightning-terminal root logger.
5454
lnd.AddSubLogger(root, Subsystem, UseLogger)
5555

5656
// Add faraday loggers to lnd's root logger.

make/release_flags.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ windows-386 \
1212
windows-amd64 \
1313
windows-arm
1414

15-
LND_RELEASE_TAGS = grub autopilotrpc signrpc walletrpc chainrpc invoicesrpc watchtowerrpc
15+
LND_RELEASE_TAGS = litd autopilotrpc signrpc walletrpc chainrpc invoicesrpc watchtowerrpc
1616

1717
# By default we will build all systems. But with the 'sys' tag, a specific
1818
# system can be specified. This is useful to release for a subset of

terminal.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ func (g *LightningTerminal) Run() error {
132132
// port at a time because we can only pass in one pre-configured RPC
133133
// listener into lnd.
134134
if len(g.cfg.Lnd.RPCListeners) > 1 {
135-
return fmt.Errorf("grub only supports one RPC listener at a " +
135+
return fmt.Errorf("litd only supports one RPC listener at a " +
136136
"time")
137137
}
138138
rpcAddr := g.cfg.Lnd.RPCListeners[0]

0 commit comments

Comments
 (0)