multi: golang.org/x/net/context -> context

This commit is contained in:
Boris Nagaev
2025-08-21 02:16:47 -03:00
parent dee8ad3754
commit 630108b13d
3 changed files with 3 additions and 3 deletions

2
go.mod
View File

@@ -54,7 +54,6 @@ require (
golang.org/x/crypto v0.37.0
golang.org/x/exp v0.0.0-20240325151524-a685a6edb6d8
golang.org/x/mobile v0.0.0-20190719004257-d2bd2a29d028
golang.org/x/net v0.39.0
golang.org/x/sync v0.13.0
golang.org/x/term v0.31.0
golang.org/x/time v0.3.0
@@ -182,6 +181,7 @@ require (
go.uber.org/multierr v1.6.0 // indirect
go.uber.org/zap v1.17.0 // indirect
golang.org/x/mod v0.17.0 // indirect
golang.org/x/net v0.39.0 // indirect
golang.org/x/sys v0.32.0 // indirect
golang.org/x/text v0.24.0 // indirect
golang.org/x/tools v0.21.1-0.20240508182429-e35e4ccd0d2d // indirect

View File

@@ -5,6 +5,7 @@ package lnrpc
import (
"bufio"
"context"
"io"
"net/http"
"net/textproto"
@@ -14,7 +15,6 @@ import (
"github.com/btcsuite/btclog/v2"
"github.com/gorilla/websocket"
"golang.org/x/net/context"
)
const (

View File

@@ -2,9 +2,9 @@ package macaroons
import (
"bytes"
"context"
"fmt"
"golang.org/x/net/context"
"gopkg.in/macaroon-bakery.v2/bakery"
"gopkg.in/macaroon.v2"
)