From b3ed4f91726a3afdf8458add31ea9b9e454ecc1a Mon Sep 17 00:00:00 2001 From: Dave Collins Date: Fri, 16 Jan 2015 18:48:31 -0600 Subject: [PATCH] Update btcchain import paths to new location. --- createtx.go | 2 +- txstore/json.go | 2 +- txstore/tx.go | 2 +- wallet.go | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/createtx.go b/createtx.go index 566d118..7c95539 100644 --- a/createtx.go +++ b/createtx.go @@ -23,9 +23,9 @@ import ( "sort" "time" + "github.com/btcsuite/btcchain" "github.com/btcsuite/btcutil" "github.com/btcsuite/btcwire" - "github.com/conformal/btcchain" "github.com/conformal/btcscript" "github.com/conformal/btcwallet/keystore" "github.com/conformal/btcwallet/txstore" diff --git a/txstore/json.go b/txstore/json.go index 5273482..ba71ab5 100644 --- a/txstore/json.go +++ b/txstore/json.go @@ -17,9 +17,9 @@ package txstore import ( + "github.com/btcsuite/btcchain" "github.com/btcsuite/btcnet" "github.com/btcsuite/btcutil" - "github.com/conformal/btcchain" "github.com/conformal/btcjson" "github.com/conformal/btcscript" ) diff --git a/txstore/tx.go b/txstore/tx.go index f3bea22..b2d3852 100644 --- a/txstore/tx.go +++ b/txstore/tx.go @@ -24,10 +24,10 @@ import ( "sync" "time" + "github.com/btcsuite/btcchain" "github.com/btcsuite/btcnet" "github.com/btcsuite/btcutil" "github.com/btcsuite/btcwire" - "github.com/conformal/btcchain" "github.com/conformal/btcscript" ) diff --git a/wallet.go b/wallet.go index 9edeb02..2ce2caa 100644 --- a/wallet.go +++ b/wallet.go @@ -26,10 +26,10 @@ import ( "sync" "time" + "github.com/btcsuite/btcchain" "github.com/btcsuite/btcnet" "github.com/btcsuite/btcutil" "github.com/btcsuite/btcwire" - "github.com/conformal/btcchain" "github.com/conformal/btcjson" "github.com/conformal/btcwallet/chain" "github.com/conformal/btcwallet/keystore"