From 5c52f67b4f3a078d4ee25a44e79287f391c67062 Mon Sep 17 00:00:00 2001 From: Dave Collins Date: Fri, 16 Jan 2015 15:18:22 -0600 Subject: [PATCH] Update btcwire import paths to new location. --- internal_test.go | 2 +- opcode.go | 2 +- opcode_test.go | 2 +- script.go | 2 +- script_test.go | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/internal_test.go b/internal_test.go index 97fe92cdf..e03c483d4 100644 --- a/internal_test.go +++ b/internal_test.go @@ -15,7 +15,7 @@ import ( "testing" "github.com/btcsuite/btcutil" - "github.com/conformal/btcwire" + "github.com/btcsuite/btcwire" ) // this file is present to export some internal interfaces so that we can diff --git a/opcode.go b/opcode.go index be1a36ce8..c4f00a1f8 100644 --- a/opcode.go +++ b/opcode.go @@ -15,9 +15,9 @@ import ( "golang.org/x/crypto/ripemd160" + "github.com/btcsuite/btcwire" "github.com/btcsuite/fastsha256" "github.com/conformal/btcec" - "github.com/conformal/btcwire" ) // An opcode defines the information related to a btcscript opcode. diff --git a/opcode_test.go b/opcode_test.go index 6bed4c311..814922373 100644 --- a/opcode_test.go +++ b/opcode_test.go @@ -8,8 +8,8 @@ import ( "bytes" "testing" + "github.com/btcsuite/btcwire" "github.com/conformal/btcscript" - "github.com/conformal/btcwire" ) // test scripts to test as many opcodes as possible. diff --git a/script.go b/script.go index 140c2976a..0a51ac47a 100644 --- a/script.go +++ b/script.go @@ -12,9 +12,9 @@ import ( "time" "github.com/btcsuite/btcutil" + "github.com/btcsuite/btcwire" "github.com/conformal/btcec" "github.com/conformal/btcnet" - "github.com/conformal/btcwire" ) var ( diff --git a/script_test.go b/script_test.go index 45e2578cf..5e2f17085 100644 --- a/script_test.go +++ b/script_test.go @@ -11,10 +11,10 @@ import ( "testing" "github.com/btcsuite/btcutil" + "github.com/btcsuite/btcwire" "github.com/conformal/btcec" "github.com/conformal/btcnet" "github.com/conformal/btcscript" - "github.com/conformal/btcwire" ) func TestPushedData(t *testing.T) {