From 9c605326ed1907eb7d2857da17485c163fb94ed3 Mon Sep 17 00:00:00 2001 From: Josh Rickmar Date: Wed, 11 Sep 2024 18:51:03 +0000 Subject: [PATCH] Use Go 1.23 default GODEBUG --- debug.go | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 debug.go diff --git a/debug.go b/debug.go new file mode 100644 index 000000000..f51144716 --- /dev/null +++ b/debug.go @@ -0,0 +1,9 @@ +// Copyright (c) 2024 The Decred developers +// Use of this source code is governed by an ISC +// license that can be found in the LICENSE file. + +//go:build go1.23 + +//go:debug default=go1.23 + +package main