From 7bc88e8360535abc4b8d76ef89588f440b745a01 Mon Sep 17 00:00:00 2001 From: Olaoluwa Osuntokun Date: Wed, 12 Feb 2025 14:06:56 -0800 Subject: [PATCH] build: update go.mod to use Go 1.23 This enables us to use the new language features that are a part of this release. --- go.mod | 2 +- tools/go.mod | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/go.mod b/go.mod index c6d57f65e..eac7a1bf1 100644 --- a/go.mod +++ b/go.mod @@ -210,6 +210,6 @@ replace google.golang.org/protobuf => github.com/lightninglabs/protobuf-go-hex-d // If you change this please also update docs/INSTALL.md and GO_VERSION in // Makefile (then run `make lint` to see where else it needs to be updated as // well). -go 1.22.6 +go 1.23.6 retract v0.0.2 diff --git a/tools/go.mod b/tools/go.mod index 02aaaea8d..0f8f3a935 100644 --- a/tools/go.mod +++ b/tools/go.mod @@ -1,6 +1,6 @@ module github.com/lightningnetwork/lnd/tools -go 1.22.6 +go 1.23.6 require ( github.com/btcsuite/btcd v0.23.3