diff --git a/address.go b/address.go index 1e82a7c..44d7896 100644 --- a/address.go +++ b/address.go @@ -10,9 +10,9 @@ import ( "golang.org/x/crypto/ripemd160" + "github.com/btcsuite/btcnet" "github.com/btcsuite/btcutil/base58" "github.com/conformal/btcec" - "github.com/conformal/btcnet" ) var ( diff --git a/address_test.go b/address_test.go index 2149704..e84ff87 100644 --- a/address_test.go +++ b/address_test.go @@ -13,9 +13,9 @@ import ( "golang.org/x/crypto/ripemd160" + "github.com/btcsuite/btcnet" "github.com/btcsuite/btcutil" "github.com/btcsuite/btcwire" - "github.com/conformal/btcnet" ) // invalidNet is an invalid bitcoin network. diff --git a/hdkeychain/example_test.go b/hdkeychain/example_test.go index 07a18f5..f453410 100644 --- a/hdkeychain/example_test.go +++ b/hdkeychain/example_test.go @@ -7,8 +7,8 @@ package hdkeychain_test import ( "fmt" + "github.com/btcsuite/btcnet" "github.com/btcsuite/btcutil/hdkeychain" - "github.com/conformal/btcnet" ) // This example demonstrates how to generate a cryptographically random seed diff --git a/hdkeychain/extendedkey.go b/hdkeychain/extendedkey.go index 37e62a3..a8aeab4 100644 --- a/hdkeychain/extendedkey.go +++ b/hdkeychain/extendedkey.go @@ -18,11 +18,11 @@ import ( "fmt" "math/big" + "github.com/btcsuite/btcnet" "github.com/btcsuite/btcutil" "github.com/btcsuite/btcutil/base58" "github.com/btcsuite/btcwire" "github.com/conformal/btcec" - "github.com/conformal/btcnet" ) const ( diff --git a/hdkeychain/extendedkey_test.go b/hdkeychain/extendedkey_test.go index 14d1c72..ae4cc5b 100644 --- a/hdkeychain/extendedkey_test.go +++ b/hdkeychain/extendedkey_test.go @@ -15,8 +15,8 @@ import ( "reflect" "testing" + "github.com/btcsuite/btcnet" "github.com/btcsuite/btcutil/hdkeychain" - "github.com/conformal/btcnet" ) // TestBIP0032Vectors tests the vectors provided by [BIP32] to ensure the diff --git a/wif.go b/wif.go index f7ec755..c1770c9 100644 --- a/wif.go +++ b/wif.go @@ -8,10 +8,10 @@ import ( "bytes" "errors" + "github.com/btcsuite/btcnet" "github.com/btcsuite/btcutil/base58" "github.com/btcsuite/btcwire" "github.com/conformal/btcec" - "github.com/conformal/btcnet" ) // ErrMalformedPrivateKey describes an error where a WIF-encoded private diff --git a/wif_test.go b/wif_test.go index 04a7c7e..e417932 100644 --- a/wif_test.go +++ b/wif_test.go @@ -7,9 +7,9 @@ package btcutil_test import ( "testing" + "github.com/btcsuite/btcnet" . "github.com/btcsuite/btcutil" "github.com/conformal/btcec" - "github.com/conformal/btcnet" ) func TestEncodeDecodeWIF(t *testing.T) {