From 9e2037d6db23d7941cb8560746fca0a8dc5fc7ed Mon Sep 17 00:00:00 2001 From: Dave Collins Date: Fri, 16 Jan 2015 18:04:23 -0600 Subject: [PATCH] Update btcec import paths to new location. --- address.go | 2 +- hdkeychain/extendedkey.go | 2 +- internal_test.go | 2 +- wif.go | 2 +- wif_test.go | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/address.go b/address.go index 44d7896..0c7c494 100644 --- a/address.go +++ b/address.go @@ -10,9 +10,9 @@ import ( "golang.org/x/crypto/ripemd160" + "github.com/btcsuite/btcec" "github.com/btcsuite/btcnet" "github.com/btcsuite/btcutil/base58" - "github.com/conformal/btcec" ) var ( diff --git a/hdkeychain/extendedkey.go b/hdkeychain/extendedkey.go index a8aeab4..da310ab 100644 --- a/hdkeychain/extendedkey.go +++ b/hdkeychain/extendedkey.go @@ -18,11 +18,11 @@ import ( "fmt" "math/big" + "github.com/btcsuite/btcec" "github.com/btcsuite/btcnet" "github.com/btcsuite/btcutil" "github.com/btcsuite/btcutil/base58" "github.com/btcsuite/btcwire" - "github.com/conformal/btcec" ) const ( diff --git a/internal_test.go b/internal_test.go index 834ac18..016fb61 100644 --- a/internal_test.go +++ b/internal_test.go @@ -14,8 +14,8 @@ package btcutil import ( "golang.org/x/crypto/ripemd160" + "github.com/btcsuite/btcec" "github.com/btcsuite/btcutil/base58" - "github.com/conformal/btcec" ) // SetBlockBytes sets the internal serialized block byte buffer to the passed diff --git a/wif.go b/wif.go index c1770c9..c1119ff 100644 --- a/wif.go +++ b/wif.go @@ -8,10 +8,10 @@ import ( "bytes" "errors" + "github.com/btcsuite/btcec" "github.com/btcsuite/btcnet" "github.com/btcsuite/btcutil/base58" "github.com/btcsuite/btcwire" - "github.com/conformal/btcec" ) // ErrMalformedPrivateKey describes an error where a WIF-encoded private diff --git a/wif_test.go b/wif_test.go index e417932..03584a4 100644 --- a/wif_test.go +++ b/wif_test.go @@ -7,9 +7,9 @@ package btcutil_test import ( "testing" + "github.com/btcsuite/btcec" "github.com/btcsuite/btcnet" . "github.com/btcsuite/btcutil" - "github.com/conformal/btcec" ) func TestEncodeDecodeWIF(t *testing.T) {