From e7c7c3399ff7ee43057fb5c59aeb30359d0c0d2b Mon Sep 17 00:00:00 2001 From: Dave Collins Date: Fri, 6 Feb 2015 10:38:24 -0600 Subject: [PATCH] Update btcec path import paths to new location. --- rpcserver.go | 2 +- txscript/opcode.go | 2 +- txscript/script.go | 2 +- txscript/script_test.go | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/rpcserver.go b/rpcserver.go index 93cfa984..5cb88597 100644 --- a/rpcserver.go +++ b/rpcserver.go @@ -27,11 +27,11 @@ import ( "time" "github.com/btcsuite/btcd/blockchain" + "github.com/btcsuite/btcd/btcec" "github.com/btcsuite/btcd/chaincfg" "github.com/btcsuite/btcd/database" "github.com/btcsuite/btcd/txscript" "github.com/btcsuite/btcd/wire" - "github.com/btcsuite/btcec" "github.com/btcsuite/btcjson" "github.com/btcsuite/btcutil" "github.com/btcsuite/btcws" diff --git a/txscript/opcode.go b/txscript/opcode.go index 640c8a93..63aab2d9 100644 --- a/txscript/opcode.go +++ b/txscript/opcode.go @@ -15,8 +15,8 @@ import ( "golang.org/x/crypto/ripemd160" + "github.com/btcsuite/btcd/btcec" "github.com/btcsuite/btcd/wire" - "github.com/btcsuite/btcec" "github.com/btcsuite/fastsha256" ) diff --git a/txscript/script.go b/txscript/script.go index 21f089d2..81653a61 100644 --- a/txscript/script.go +++ b/txscript/script.go @@ -11,9 +11,9 @@ import ( "fmt" "time" + "github.com/btcsuite/btcd/btcec" "github.com/btcsuite/btcd/chaincfg" "github.com/btcsuite/btcd/wire" - "github.com/btcsuite/btcec" "github.com/btcsuite/btcutil" ) diff --git a/txscript/script_test.go b/txscript/script_test.go index 4d9eaa6b..6646187c 100644 --- a/txscript/script_test.go +++ b/txscript/script_test.go @@ -10,10 +10,10 @@ import ( "fmt" "testing" + "github.com/btcsuite/btcd/btcec" "github.com/btcsuite/btcd/chaincfg" "github.com/btcsuite/btcd/txscript" "github.com/btcsuite/btcd/wire" - "github.com/btcsuite/btcec" "github.com/btcsuite/btcutil" )