From c1df139e32ab36a69a9499b35c2c35959b260b47 Mon Sep 17 00:00:00 2001 From: Dave Collins Date: Fri, 16 Jan 2015 15:28:53 -0600 Subject: [PATCH] Update btcwire import paths to new location. --- chain.go | 2 +- examples/btcdwebsockets/main.go | 2 +- extensions.go | 2 +- notify.go | 2 +- rawtransactions.go | 2 +- wallet.go | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/chain.go b/chain.go index 07241a670..6f929f32d 100644 --- a/chain.go +++ b/chain.go @@ -10,8 +10,8 @@ import ( "encoding/json" "github.com/btcsuite/btcutil" + "github.com/btcsuite/btcwire" "github.com/conformal/btcjson" - "github.com/conformal/btcwire" ) // FutureGetBestBlockHashResult is a future promise to deliver the result of a diff --git a/examples/btcdwebsockets/main.go b/examples/btcdwebsockets/main.go index 5ae486b77..3dd2b62f5 100644 --- a/examples/btcdwebsockets/main.go +++ b/examples/btcdwebsockets/main.go @@ -12,7 +12,7 @@ import ( "github.com/btcsuite/btcrpcclient" "github.com/btcsuite/btcutil" - "github.com/conformal/btcwire" + "github.com/btcsuite/btcwire" ) func main() { diff --git a/extensions.go b/extensions.go index 5d281e511..0c881a4fb 100644 --- a/extensions.go +++ b/extensions.go @@ -10,8 +10,8 @@ import ( "fmt" "github.com/btcsuite/btcutil" + "github.com/btcsuite/btcwire" "github.com/conformal/btcjson" - "github.com/conformal/btcwire" "github.com/conformal/btcws" ) diff --git a/notify.go b/notify.go index c7154cdfd..d84f6ce34 100644 --- a/notify.go +++ b/notify.go @@ -14,8 +14,8 @@ import ( "time" "github.com/btcsuite/btcutil" + "github.com/btcsuite/btcwire" "github.com/conformal/btcjson" - "github.com/conformal/btcwire" "github.com/conformal/btcws" ) diff --git a/rawtransactions.go b/rawtransactions.go index 2cfec5e97..6ca9ce092 100644 --- a/rawtransactions.go +++ b/rawtransactions.go @@ -10,8 +10,8 @@ import ( "encoding/json" "github.com/btcsuite/btcutil" + "github.com/btcsuite/btcwire" "github.com/conformal/btcjson" - "github.com/conformal/btcwire" ) // SigHashType enumerates the available signature hashing types that the diff --git a/wallet.go b/wallet.go index 916e9100d..75849e673 100644 --- a/wallet.go +++ b/wallet.go @@ -9,9 +9,9 @@ import ( "strconv" "github.com/btcsuite/btcutil" + "github.com/btcsuite/btcwire" "github.com/conformal/btcjson" "github.com/conformal/btcnet" - "github.com/conformal/btcwire" "github.com/conformal/btcws" )