Skip to content

Commit 24eb45a

Browse files
committed
multi: golang.org/x/net/context -> context
1 parent 3eced3b commit 24eb45a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@ require (
5454
golang.org/x/crypto v0.37.0
5555
golang.org/x/exp v0.0.0-20240325151524-a685a6edb6d8
5656
golang.org/x/mobile v0.0.0-20190719004257-d2bd2a29d028
57-
golang.org/x/net v0.39.0
5857
golang.org/x/sync v0.13.0
5958
golang.org/x/term v0.31.0
6059
golang.org/x/time v0.3.0
@@ -182,6 +181,7 @@ require (
182181
go.uber.org/multierr v1.6.0 // indirect
183182
go.uber.org/zap v1.17.0 // indirect
184183
golang.org/x/mod v0.17.0 // indirect
184+
golang.org/x/net v0.39.0 // indirect
185185
golang.org/x/sys v0.32.0 // indirect
186186
golang.org/x/text v0.24.0 // indirect
187187
golang.org/x/tools v0.21.1-0.20240508182429-e35e4ccd0d2d // indirect

lnrpc/websocket_proxy.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ package lnrpc
55

66
import (
77
"bufio"
8+
"context"
89
"io"
910
"net/http"
1011
"net/textproto"
@@ -14,7 +15,6 @@ import (
1415

1516
"github.com/btcsuite/btclog/v2"
1617
"github.com/gorilla/websocket"
17-
"golang.org/x/net/context"
1818
)
1919

2020
const (

macaroons/bake.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ package macaroons
22

33
import (
44
"bytes"
5+
"context"
56
"fmt"
67

7-
"golang.org/x/net/context"
88
"gopkg.in/macaroon-bakery.v2/bakery"
99
"gopkg.in/macaroon.v2"
1010
)

0 commit comments

Comments
 (0)