Skip to content

Commit 33df4a1

Browse files
committed
multi: rename golang and make files to lightning-terminal
1 parent 3efb0e9 commit 33df4a1

13 files changed

+58
-49
lines changed

.dockerignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
app/build
22
app/coverage
33
app/node_modules
4-
shushtar-debug
4+
lightning-terminal-debug

.gitignore

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ https.key
55
# local environment vars to ignore
66
.env*.local
77

8-
shushtar-debug
9-
/shushtar-*
8+
lightning-terminal-debug
9+
/lightning-terminal-*
1010

1111
# go code generated by statik
1212
/statik/statik.go

Dockerfile

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM golang:1.13-alpine as builder
22

33
# Copy in the local repository to build from.
4-
COPY . /go/src/github.com/lightninglabs/shushtar
4+
COPY . /go/src/github.com/lightninglabs/lightning-terminal
55

66
# Force Go to use the cgo based DNS resolver. This is required to ensure DNS
77
# queries required to connect to linked containers succeed.
@@ -12,7 +12,7 @@ ENV GO111MODULE on
1212

1313
ENV NODE_VERSION=v12.17.0
1414

15-
# Install dependencies and install/build shushtar.
15+
# Install dependencies and install/build lightning-terminal.
1616
RUN apk add --no-cache --update alpine-sdk \
1717
git \
1818
make \
@@ -27,7 +27,7 @@ RUN apk add --no-cache --update alpine-sdk \
2727
&& curl -o- -L https://yarnpkg.com/install.sh | bash \
2828
&& /bin/bash \
2929
&& . ~/.bashrc \
30-
&& cd /go/src/github.com/lightninglabs/shushtar \
30+
&& cd /go/src/github.com/lightninglabs/lightning-terminal \
3131
&& make install \
3232
&& go install -v -trimpath github.com/lightningnetwork/lnd/cmd/lncli \
3333
&& go install -v -trimpath github.com/lightninglabs/faraday/cmd/frcli \
@@ -39,11 +39,11 @@ FROM alpine as final
3939
# Define a root volume for data persistence.
4040
VOLUME /root/.lnd
4141

42-
# Expose shushtar and lnd ports (server, rpc).
42+
# Expose lightning-terminal and lnd ports (server, rpc).
4343
EXPOSE 8443 10009 9735
4444

4545
# Copy the binaries and entrypoint from the builder image.
46-
COPY --from=builder /go/bin/shushtar /bin/
46+
COPY --from=builder /go/bin/lightning-terminal /bin/
4747
COPY --from=builder /go/bin/lncli /bin/
4848
COPY --from=builder /go/bin/frcli /bin/
4949
COPY --from=builder /go/bin/loop /bin/
@@ -54,5 +54,5 @@ RUN apk add --no-cache \
5454
jq \
5555
ca-certificates
5656

57-
# Specify the start command and entrypoint as the shushtar daemon.
58-
ENTRYPOINT ["shushtar"]
57+
# Specify the start command and entrypoint as the lightning-terminal daemon.
58+
ENTRYPOINT ["lightning-terminal"]

Makefile

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
PKG := github.com/lightninglabs/shushtar
2-
ESCPKG := github.com\/lightninglabs\/shushtar
1+
PKG := github.com/lightninglabs/lightning-terminal
2+
ESCPKG := github.com\/lightninglabs\/lightning-terminal
33
LND_PKG := github.com/lightningnetwork/lnd
44

55
LINT_PKG := github.com/golangci/golangci-lint/cmd/golangci-lint
@@ -41,7 +41,7 @@ include make/release_flags.mk
4141
# We only return the part inside the double quote here to avoid escape issues
4242
# when calling the external release script. The second parameter can be used to
4343
# add additional ldflags if needed (currently only used for the release).
44-
make_ldflags = $(2) -X $(LND_PKG)/build.Commit=shushtar-$(COMMIT) \
44+
make_ldflags = $(2) -X $(LND_PKG)/build.Commit=lightning-terminal-$(COMMIT) \
4545
-X $(LND_PKG)/build.CommitHash=$(COMMIT_HASH) \
4646
-X $(LND_PKG)/build.GoVersion=$(GOVERSION) \
4747
-X $(LND_PKG)/build.RawTags=$(shell echo $(1) | sed -e 's/ /,/g')
@@ -97,19 +97,19 @@ build: statik-build go-build
9797
install: statik-build go-install
9898

9999
go-build:
100-
@$(call print, "Building shushtar.")
101-
$(GOBUILD) -tags="$(LND_RELEASE_TAGS)" -ldflags "$(LDFLAGS)" -o shushtar-debug $(PKG)/cmd/shushtar
100+
@$(call print, "Building lightning-terminal.")
101+
$(GOBUILD) -tags="$(LND_RELEASE_TAGS)" -ldflags "$(LDFLAGS)" -o lightning-terminal-debug $(PKG)/cmd/lightning-terminal
102102

103103
go-install:
104-
@$(call print, "Installing shushtar.")
105-
$(GOINSTALL) -tags="$(LND_RELEASE_TAGS)" -ldflags "$(LDFLAGS)" $(PKG)/cmd/shushtar
104+
@$(call print, "Installing lightning-terminal.")
105+
$(GOINSTALL) -tags="$(LND_RELEASE_TAGS)" -ldflags "$(LDFLAGS)" $(PKG)/cmd/lightning-terminal
106106

107107
app-build: yarn-install
108108
@$(call print, "Building production app.")
109109
cd app; yarn build
110110

111111
release: statik-build
112-
@$(call print, "Creating release of shushtar.")
112+
@$(call print, "Creating release of lightning-terminal.")
113113
./release.sh build-release "$(VERSION_TAG)" "$(BUILD_SYSTEM)" "$(LND_RELEASE_TAGS)" "$(RELEASE_LDFLAGS)"
114114

115115
scratch: build
@@ -179,6 +179,6 @@ list:
179179

180180
clean:
181181
@$(call print, "Cleaning source.$(NC)")
182-
$(RM) ./shushtar-debug
182+
$(RM) ./lightning-terminal-debug
183183
$(RM) coverage.txt
184184
$(RM) -r statik

cmd/shushtar/main.go cmd/lightning-terminal/main.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ import (
55
"os"
66

77
"github.com/jessevdk/go-flags"
8-
"github.com/lightninglabs/shushtar"
8+
"github.com/lightninglabs/lightning-terminal"
99
)
1010

11-
// main starts the shushtar application.
11+
// main starts the lightning-terminal application.
1212
func main() {
13-
err := shushtar.New().Run()
13+
err := terminal.New().Run()
1414
if e, ok := err.(*flags.Error); err != nil &&
1515
(!ok || e.Type != flags.ErrHelp) {
1616

config.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package shushtar
1+
package terminal
22

33
import (
44
"crypto/tls"
@@ -36,9 +36,9 @@ var (
3636
defaultLetsEncryptDir = "letsencrypt"
3737
)
3838

39-
// Config is the main configuration struct of shushtar. It contains all config
40-
// items of its enveloping subservers, each prefixed with their daemon's short
41-
// name.
39+
// Config is the main configuration struct of lightning-terminal. It contains
40+
// all config items of its enveloping subservers, each prefixed with their
41+
// daemon's short name.
4242
type Config struct {
4343
HTTPSListen string `long:"httpslisten" description:"host:port to listen for incoming HTTP/2 connections on"`
4444
UIPassword string `long:"uipassword" description:"the password that must be entered when using the loop UI. use a strong password to protect your node from unauthorized access through the web UI"`

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/lightninglabs/shushtar
1+
module github.com/lightninglabs/lightning-terminal
22

33
require (
44
github.com/btcsuite/btclog v0.0.0-20170628155309-84c8d2346e9f

go.sum

+9
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw=
2+
cloud.google.com/go v0.34.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw=
23
git.schwanenlied.me/yawning/bsaes.git v0.0.0-20180720073208-c0276d75487e h1:F2x1bq7RaNCIuqYpswggh1+c1JmwdnkHNC9wy1KDip0=
34
git.schwanenlied.me/yawning/bsaes.git v0.0.0-20180720073208-c0276d75487e/go.mod h1:BWqTsj8PgcPriQJGl7el20J/7TuT1d/hSyFDXMEpoEo=
45
github.com/BurntSushi/toml v0.3.1 h1:WXkYYl6Yr3qBf1K79EBnL4mak0OimBfB0XUf9Vl28OQ=
@@ -19,6 +20,7 @@ github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751/go.mod h1:LOuy
1920
github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0=
2021
github.com/alecthomas/units v0.0.0-20190717042225-c3de453c63f4/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0=
2122
github.com/antihax/optional v0.0.0-20180407024304-ca021399b1a6/go.mod h1:V8iCPQYkqmusNa815XgQio277wI47sdRh1dUOLdyC6Q=
23+
github.com/antihax/optional v1.0.0/go.mod h1:uupD/76wgC+ih3iEmQUL+0Ugr19nfwCT1kdvxnR2qWY=
2224
github.com/asaskevich/govalidator v0.0.0-20190424111038-f61b66f89f4a h1:idn718Q4B6AGu/h5Sxe66HYVdqdGu2l9Iebqhi/AEoA=
2325
github.com/asaskevich/govalidator v0.0.0-20190424111038-f61b66f89f4a/go.mod h1:lB+ZfQJz7igIIfQNfa7Ml4HSf2uFQQRzpGGRXenZAgY=
2426
github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod h1:Dwedo/Wpr24TaqPxmxbtue+5NUziq4I4S80YR8gNf3Q=
@@ -86,6 +88,7 @@ github.com/desertbit/timer v0.0.0-20180107155436-c41aec40b27f h1:U5y3Y5UE0w7amNe
8688
github.com/desertbit/timer v0.0.0-20180107155436-c41aec40b27f/go.mod h1:xH/i4TFMt8koVQZ6WFms69WAsDWr2XsYL3Hkl7jkoLE=
8789
github.com/dgryski/go-sip13 v0.0.0-20181026042036-e10d5fee7954/go.mod h1:vAd38F8PWV+bWy6jNmig1y/TA+kYO4g3RSRF0IAv0no=
8890
github.com/envoyproxy/go-control-plane v0.9.0/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4=
91+
github.com/envoyproxy/go-control-plane v0.9.1-0.20191026205805-5f8ba28d4473/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4=
8992
github.com/envoyproxy/go-control-plane v0.9.4/go.mod h1:6rpuAdCZL397s3pYoYcLgu1mIlRU8Am5FuJP05cCM98=
9093
github.com/envoyproxy/protoc-gen-validate v0.1.0/go.mod h1:iSmxcyjqTsJpI2R4NaDN7+kN2VEUnK/pcBlmesArF7c=
9194
github.com/fortytw2/leaktest v1.3.0 h1:u8491cBMTQ8ft8aeV+adlcytMZylmA5nnwwkRZjI8vw=
@@ -136,6 +139,7 @@ github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0/go.mod h1:8NvIoxWQoOIhqOTXgf
136139
github.com/grpc-ecosystem/grpc-gateway v1.8.6/go.mod h1:vNeuVxBJEsws4ogUvrchl83t/GYV9WGTSLVdBhOQFDY=
137140
github.com/grpc-ecosystem/grpc-gateway v1.14.3 h1:OCJlWkOUoTnl0neNGlf4fUm3TmbEtguw7vR+nGtnDjY=
138141
github.com/grpc-ecosystem/grpc-gateway v1.14.3/go.mod h1:6CwZWGDSPRJidgKAtJVvND6soZe6fT7iteq8wDPdhb0=
142+
github.com/grpc-ecosystem/grpc-gateway v1.14.6/go.mod h1:zdiPV4Yse/1gnckTHtghG4GkDEdKCRJduHpTxT3/jcw=
139143
github.com/hpcloud/tail v1.0.0 h1:nfCOvKYfkgYP8hkirhJocXT2+zOD8yUNjXaWfTlyFKI=
140144
github.com/hpcloud/tail v1.0.0/go.mod h1:ab1qPbhIpdTxEkNHXyeSf5vhxWSCs/tWer42PpOxQnU=
141145
github.com/improbable-eng/grpc-web v0.12.0 h1:GlCS+lMZzIkfouf7CNqY+qqpowdKuJLSLLcKVfM1oLc=
@@ -320,6 +324,7 @@ golang.org/x/net v0.0.0-20180906233101-161cd47e91fd/go.mod h1:mL1N/T3taQHkDXs73r
320324
golang.org/x/net v0.0.0-20181106065722-10aee1819953/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
321325
golang.org/x/net v0.0.0-20181114220301-adae6a3d119a/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
322326
golang.org/x/net v0.0.0-20181220203305-927f97764cc3/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
327+
golang.org/x/net v0.0.0-20190108225652-1e06a53dbb7e/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
323328
golang.org/x/net v0.0.0-20190206173232-65e2d4e15006/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
324329
golang.org/x/net v0.0.0-20190213061140-3a22650c66bd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
325330
golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg=
@@ -329,6 +334,7 @@ golang.org/x/net v0.0.0-20191002035440-2ec189313ef0/go.mod h1:z5CRVTTTmAJ677TzLL
329334
golang.org/x/net v0.0.0-20200324143707-d3edc9973b7e h1:3G+cUijn7XD+S4eJFddp53Pv7+slrESplyjG25HgL+k=
330335
golang.org/x/net v0.0.0-20200324143707-d3edc9973b7e/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A=
331336
golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U=
337+
golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw=
332338
golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
333339
golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
334340
golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
@@ -371,14 +377,17 @@ google.golang.org/genproto v0.0.0-20190201180003-4b09977fb922/go.mod h1:L3J43x8/
371377
google.golang.org/genproto v0.0.0-20190819201941-24fa4b261c55/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc=
372378
google.golang.org/genproto v0.0.0-20190927181202-20e1ac93f88c h1:hrpEMCZ2O7DR5gC1n2AJGVhrwiEjOi35+jxtIuZpTMo=
373379
google.golang.org/genproto v0.0.0-20190927181202-20e1ac93f88c/go.mod h1:IbNlFCBrqXvoKpeg0TB2l7cyZUmoaFKYIwrEpbDKLA8=
380+
google.golang.org/genproto v0.0.0-20200513103714-09dca8ec2884/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c=
374381
google.golang.org/grpc v1.16.0/go.mod h1:0JHn/cJsOMiMfNA9+DeHDlAU7KAAB5GDlYFpa9MZMio=
375382
google.golang.org/grpc v1.18.0/go.mod h1:6QZJwpn2B+Zp71q/5VxRsJ6NXXVCE5NRUHRo+f3cWCs=
376383
google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c=
377384
google.golang.org/grpc v1.23.0/go.mod h1:Y5yQAOtifL1yxbo5wqy6BxZv8vAUGQwXBOALyacEbxg=
378385
google.golang.org/grpc v1.24.0/go.mod h1:XDChyiUovWa60DnaeDeZmSW86xtLtjtZbwvSiRnRtcA=
379386
google.golang.org/grpc v1.25.1/go.mod h1:c3i+UQWmh7LiEpx4sFZnkU36qjEYZ0imhYfXVyQciAY=
387+
google.golang.org/grpc v1.27.0/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk=
380388
google.golang.org/grpc v1.28.0 h1:bO/TA4OxCOummhSf10siHuG7vJOiwh7SpRpFZDkOgl4=
381389
google.golang.org/grpc v1.28.0/go.mod h1:rpkK4SK4GF4Ach/+MFLZUBavHOvF2JJB5uozKKal+60=
390+
google.golang.org/grpc v1.29.1/go.mod h1:itym6AZVZYACWQqET3MqgPpjcuV5QH3BxFS3IjizoKk=
382391
gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw=
383392
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
384393
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=

gzip.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package shushtar
1+
package terminal
22

33
import (
44
"compress/gzip"

log.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package shushtar
1+
package terminal
22

33
import (
44
"github.com/btcsuite/btclog"
@@ -26,7 +26,7 @@ var (
2626

2727
const (
2828
// Subsystem defines the logging code for this subsystem.
29-
Subsystem = "GRUB"
29+
Subsystem = "LITD"
3030

3131
// GrpcLogSubsystem defines the logging code for the gRPC subsystem.
3232
GrpcLogSubsystem = "GRPC"

release.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@
99

1010
set -e
1111

12-
PKG="github.com/lightninglabs/shushtar"
12+
PKG="github.com/lightninglabs/lightning-terminal"
1313
LND_PKG="github.com/lightningnetwork/lnd"
1414
FARADAY_PKG="github.com/lightninglabs/faraday"
1515
LOOP_PKG="github.com/lightninglabs/loop"
16-
PACKAGE=shushtar
16+
PACKAGE=lightning-terminal
1717

1818
# green prints one line of green text (if the terminal supports it).
1919
function green() {
@@ -68,7 +68,7 @@ function build_release() {
6868
pushd "${dir}"
6969

7070
green " - Building: ${os} ${arch} ${arm} with build tags '${buildtags}'"
71-
env CGO_ENABLED=0 GOOS=$os GOARCH=$arch GOARM=$arm go build -v -trimpath -ldflags="${ldflags}" -tags="${buildtags}" ${PKG}/cmd/shushtar
71+
env CGO_ENABLED=0 GOOS=$os GOARCH=$arch GOARM=$arm go build -v -trimpath -ldflags="${ldflags}" -tags="${buildtags}" ${PKG}/cmd/lightning-terminal
7272
env CGO_ENABLED=0 GOOS=$os GOARCH=$arch GOARM=$arm go build -v -trimpath -ldflags="${ldflags}" -tags="${buildtags}" ${LND_PKG}/cmd/lncli
7373
env CGO_ENABLED=0 GOOS=$os GOARCH=$arch GOARM=$arm go build -v -trimpath -ldflags="${ldflags}" -tags="${buildtags}" ${FARADAY_PKG}/cmd/frcli
7474
env CGO_ENABLED=0 GOOS=$os GOARCH=$arch GOARM=$arm go build -v -trimpath -ldflags="${ldflags}" -tags="${buildtags}" ${LOOP_PKG}/cmd/loop

subserver_permissions.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package shushtar
1+
package terminal
22

33
import "gopkg.in/macaroon-bakery.v2/bakery"
44

shushtar.go terminal.go

+15-15
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package shushtar
1+
package terminal
22

33
import (
44
"context"
@@ -42,7 +42,7 @@ import (
4242

4343
// Import generated go package that contains all static files for the
4444
// UI in a compressed format.
45-
_ "github.com/lightninglabs/shushtar/statik"
45+
_ "github.com/lightninglabs/lightning-terminal/statik"
4646
)
4747

4848
const (
@@ -61,9 +61,9 @@ var (
6161
)
6262
)
6363

64-
// Shushtar is the main grand unified binary instance. Its task is to start an
65-
// lnd node then start and register external subservers to it.
66-
type Shushtar struct {
64+
// LightningTerminal is the main grand unified binary instance. Its task is to
65+
// start an lnd node then start and register external subservers to it.
66+
type LightningTerminal struct {
6767
cfg *Config
6868
lndAddr string
6969
listenerCfg lnd.ListenerCfg
@@ -84,17 +84,17 @@ type Shushtar struct {
8484
httpServer *http.Server
8585
}
8686

87-
// New creates a new instance of the shushtar daemon.
88-
func New() *Shushtar {
89-
return &Shushtar{
87+
// New creates a new instance of the lightning-terminal daemon.
88+
func New() *LightningTerminal {
89+
return &LightningTerminal{
9090
cfg: defaultConfig(),
9191
lndErrChan: make(chan error, 1),
9292
}
9393
}
9494

9595
// Run starts everything and then blocks until either the application is shut
9696
// down or a critical error happens.
97-
func (g *Shushtar) Run() error {
97+
func (g *LightningTerminal) Run() error {
9898
// Pre-parse the command line options to pick up an alternative config
9999
// file.
100100
_, err := flags.Parse(g.cfg)
@@ -109,7 +109,7 @@ func (g *Shushtar) Run() error {
109109
return err
110110
}
111111

112-
// Validate the shushtar config options.
112+
// Validate the lightning-terminal config options.
113113
if g.cfg.LetsEncryptDir == "" {
114114
g.cfg.LetsEncryptDir = filepath.Join(
115115
g.cfg.Lnd.LndDir, defaultLetsEncryptDir,
@@ -253,7 +253,7 @@ func (g *Shushtar) Run() error {
253253
// startSubservers creates an internal connection to lnd and then starts all
254254
// embedded daemons as external subservers that hook into the same gRPC and REST
255255
// servers that lnd started.
256-
func (g *Shushtar) startSubservers(network string) error {
256+
func (g *LightningTerminal) startSubservers(network string) error {
257257
var basicClient lnrpc.LightningClient
258258

259259
// The main RPC listener of lnd might need some time to start, it could
@@ -344,7 +344,7 @@ func (g *Shushtar) startSubservers(network string) error {
344344
// called once lnd has initialized its main gRPC server instance. It gives the
345345
// daemons (or external subservers) the possibility to register themselves to
346346
// the same server instance.
347-
func (g *Shushtar) RegisterGrpcSubserver(grpcServer *grpc.Server) error {
347+
func (g *LightningTerminal) RegisterGrpcSubserver(grpcServer *grpc.Server) error {
348348
g.lndGrpcServer = grpcServer
349349
frdrpc.RegisterFaradayServerServer(grpcServer, g.faradayServer)
350350
looprpc.RegisterSwapClientServer(grpcServer, g.loopServer)
@@ -355,7 +355,7 @@ func (g *Shushtar) RegisterGrpcSubserver(grpcServer *grpc.Server) error {
355355
// called once lnd has initialized its main REST server instance. It gives the
356356
// daemons (or external subservers) the possibility to register themselves to
357357
// the same server instance.
358-
func (g *Shushtar) RegisterRestSubserver(ctx context.Context,
358+
func (g *LightningTerminal) RegisterRestSubserver(ctx context.Context,
359359
mux *restProxy.ServeMux, endpoint string,
360360
dialOpts []grpc.DialOption) error {
361361

@@ -372,7 +372,7 @@ func (g *Shushtar) RegisterRestSubserver(ctx context.Context,
372372
}
373373

374374
// shutdown stops all subservers that were started and attached to lnd.
375-
func (g *Shushtar) shutdown() error {
375+
func (g *LightningTerminal) shutdown() error {
376376
var returnErr error
377377

378378
if g.faradayStarted {
@@ -422,7 +422,7 @@ func (g *Shushtar) shutdown() error {
422422
// startGrpcWebProxy creates a proxy that speaks gRPC web on one side and native
423423
// gRPC on the other side. This allows gRPC web requests from the browser to be
424424
// forwarded to lnd's native gRPC interface.
425-
func (g *Shushtar) startGrpcWebProxy() error {
425+
func (g *LightningTerminal) startGrpcWebProxy() error {
426426
// Initialize the in-memory file server from the content compiled by
427427
// the statik library.
428428
statikFS, err := fs.New()

0 commit comments

Comments
 (0)