Skip to content

Commit eb670db

Browse files
committed
multi: switch over all imports to point to btcsuite
1 parent e5ab5d7 commit eb670db

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

bench_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"bytes"
55
"testing"
66

7-
"github.com/roasbeef/btcd/btcec"
7+
"github.com/btcsuite/btcd/btcec"
88
)
99

1010
var (

cmd/main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ import (
1010
"strings"
1111

1212
sphinx "github.com/lightningnetwork/lightning-onion"
13-
"github.com/roasbeef/btcd/btcec"
14-
"github.com/roasbeef/btcd/chaincfg"
13+
"github.com/btcsuite/btcd/btcec"
14+
"github.com/btcsuite/btcd/chaincfg"
1515
)
1616

1717
// main implements a simple command line utility that can be used in order to

hornet.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package sphinx
22

33
import (
4-
"github.com/roasbeef/btcd/btcec"
4+
"github.com/btcsuite/btcd/btcec"
55
"golang.org/x/crypto/ripemd160"
66
)
77

obfuscation.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"errors"
88
"io"
99

10-
"github.com/roasbeef/btcd/btcec"
10+
"github.com/btcsuite/btcd/btcec"
1111
)
1212

1313
// onionEncrypt obfuscates the data with compliance with BOLT#4. As we use a

obfuscation_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"reflect"
77
"testing"
88

9-
"github.com/roasbeef/btcd/btcec"
9+
"github.com/btcsuite/btcd/btcec"
1010
)
1111

1212
// TestOnionFailure checks the ability of sender of payment to decode the

sphinx.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ import (
1111
"math/big"
1212

1313
"github.com/aead/chacha20"
14-
"github.com/roasbeef/btcd/btcec"
15-
"github.com/roasbeef/btcd/chaincfg"
16-
"github.com/roasbeef/btcutil"
14+
"github.com/btcsuite/btcd/btcec"
15+
"github.com/btcsuite/btcd/chaincfg"
16+
"github.com/btcsuite/btcutil"
1717
)
1818

1919
const (

sphinx_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ import (
88
"testing"
99

1010
"github.com/davecgh/go-spew/spew"
11-
"github.com/roasbeef/btcd/btcec"
12-
"github.com/roasbeef/btcd/chaincfg"
11+
"github.com/btcsuite/btcd/btcec"
12+
"github.com/btcsuite/btcd/chaincfg"
1313
)
1414

1515
// BOLT 4 Test Vectors

0 commit comments

Comments
 (0)