From 2a8cf9f44f2a501fcd6df72662fdaa529813a073 Mon Sep 17 00:00:00 2001 From: Dave Collins Date: Thu, 13 Jun 2013 15:18:58 -0500 Subject: [PATCH] Use correct import path for btcec. --- opcode.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opcode.go b/opcode.go index 504d8ff3..613b8361 100644 --- a/opcode.go +++ b/opcode.go @@ -11,11 +11,11 @@ import ( "crypto/sha1" "crypto/sha256" "fmt" + "github.com/conformal/btcec" "github.com/conformal/btcwire" "github.com/davecgh/go-spew/spew" "hash" "math/big" - "opensource.conformal.com/go/btcd/btcec" ) // An opcode defines the information related to a btcscript opcode.