From eb02adfada569144c6a8c4cce1aeefcc269d3acc Mon Sep 17 00:00:00 2001 From: Dave Collins Date: Fri, 16 Jan 2015 18:05:06 -0600 Subject: [PATCH] Update btcec import paths to new location. --- opcode.go | 2 +- script.go | 2 +- script_test.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/opcode.go b/opcode.go index c4f00a1f..ca4fa8ff 100644 --- a/opcode.go +++ b/opcode.go @@ -15,9 +15,9 @@ import ( "golang.org/x/crypto/ripemd160" + "github.com/btcsuite/btcec" "github.com/btcsuite/btcwire" "github.com/btcsuite/fastsha256" - "github.com/conformal/btcec" ) // An opcode defines the information related to a btcscript opcode. diff --git a/script.go b/script.go index 6c8395cb..ddecc5bf 100644 --- a/script.go +++ b/script.go @@ -11,10 +11,10 @@ import ( "fmt" "time" + "github.com/btcsuite/btcec" "github.com/btcsuite/btcnet" "github.com/btcsuite/btcutil" "github.com/btcsuite/btcwire" - "github.com/conformal/btcec" ) var ( diff --git a/script_test.go b/script_test.go index 14ab8a6e..fce5f0b3 100644 --- a/script_test.go +++ b/script_test.go @@ -10,10 +10,10 @@ import ( "fmt" "testing" + "github.com/btcsuite/btcec" "github.com/btcsuite/btcnet" "github.com/btcsuite/btcutil" "github.com/btcsuite/btcwire" - "github.com/conformal/btcec" "github.com/conformal/btcscript" )