Skip to content

Commit 9271b5e

Browse files
authored
Merge pull request #8984 from guggero/make-rpc
lnrpc: avoid needing to download Golang
2 parents 747abb4 + 94b9b50 commit 9271b5e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -204,8 +204,8 @@ replace github.com/gogo/protobuf => github.com/gogo/protobuf v1.3.2
204204
// allows us to specify that as an option.
205205
replace google.golang.org/protobuf => github.com/lightninglabs/protobuf-go-hex-display v1.30.0-hex-display
206206

207-
// If you change this please also update .github/pull_request_template.md and
208-
// docs/INSTALL.md.
207+
// If you change this please also update .github/pull_request_template.md,
208+
// docs/INSTALL.md and GO_IMAGE in lnrpc/gen_protos_docker.sh.
209209
go 1.21.4
210210

211211
retract v0.0.2

lnrpc/gen_protos_docker.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ set -e
66
DIR="$(cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd)"
77

88
# golang docker image version used in this script.
9-
GO_IMAGE=docker.io/library/golang:1.21.0-alpine
9+
GO_IMAGE=docker.io/library/golang:1.21.4-alpine
1010

1111
PROTOBUF_VERSION=$(docker run --rm -v $DIR/../:/lnd -w /lnd $GO_IMAGE \
1212
go list -f '{{.Version}}' -m google.golang.org/protobuf)

0 commit comments

Comments
 (0)