File tree Expand file tree Collapse file tree 4 files changed +5
-4
lines changed Expand file tree Collapse file tree 4 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,6 @@ require (
35
35
github.com/stretchr/testify v1.10.0
36
36
github.com/urfave/cli v1.22.14
37
37
go.etcd.io/bbolt v1.3.11
38
- golang.org/x/net v0.38.0
39
38
golang.org/x/sync v0.12.0
40
39
google.golang.org/grpc v1.64.1
41
40
google.golang.org/protobuf v1.34.2
@@ -185,6 +184,7 @@ require (
185
184
golang.org/x/crypto v0.36.0 // indirect
186
185
golang.org/x/exp v0.0.0-20240325151524-a685a6edb6d8 // indirect
187
186
golang.org/x/mod v0.21.0 // indirect
187
+ golang.org/x/net v0.38.0 // indirect
188
188
golang.org/x/sys v0.31.0 // indirect
189
189
golang.org/x/term v0.30.0 // indirect
190
190
golang.org/x/text v0.23.0 // indirect
Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ package test
2
2
3
3
import (
4
4
"bytes"
5
+ "context"
5
6
"sync"
6
7
"time"
7
8
@@ -10,7 +11,6 @@ import (
10
11
"github.com/lightninglabs/lndclient"
11
12
"github.com/lightningnetwork/lnd/chainntnfs"
12
13
"github.com/lightningnetwork/lnd/lnrpc/chainrpc"
13
- "golang.org/x/net/context"
14
14
)
15
15
16
16
type mockChainNotifier struct {
Original file line number Diff line number Diff line change 1
1
package test
2
2
3
3
import (
4
+ "context"
4
5
"crypto/rand"
5
6
"encoding/hex"
6
7
"fmt"
@@ -17,7 +18,6 @@ import (
17
18
"github.com/lightningnetwork/lnd/lntypes"
18
19
"github.com/lightningnetwork/lnd/routing/route"
19
20
"github.com/lightningnetwork/lnd/zpay32"
20
- "golang.org/x/net/context"
21
21
)
22
22
23
23
type mockLightningClient struct {
Original file line number Diff line number Diff line change 1
1
package test
2
2
3
3
import (
4
+ "context"
5
+
4
6
"github.com/lightninglabs/lndclient"
5
7
"github.com/lightningnetwork/lnd/lntypes"
6
- "golang.org/x/net/context"
7
8
)
8
9
9
10
type mockRouter struct {
You can’t perform that action at this time.
0 commit comments