From 58f7cedc0e8375d5463bab6f060d323ab78902af Mon Sep 17 00:00:00 2001 From: Dave Collins Date: Thu, 19 Feb 2015 12:01:41 -0600 Subject: [PATCH] Update btcjson path import paths to new location. --- rpcserver.go | 2 +- txstore/json.go | 2 +- wallet.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/rpcserver.go b/rpcserver.go index 53860c4..c3f8331 100644 --- a/rpcserver.go +++ b/rpcserver.go @@ -38,9 +38,9 @@ import ( "time" "github.com/btcsuite/btcd/btcec" + "github.com/btcsuite/btcd/btcjson" "github.com/btcsuite/btcd/txscript" "github.com/btcsuite/btcd/wire" - "github.com/btcsuite/btcjson" "github.com/btcsuite/btcrpcclient" "github.com/btcsuite/btcutil" "github.com/btcsuite/btcwallet/chain" diff --git a/txstore/json.go b/txstore/json.go index 4c81d39..ced3a00 100644 --- a/txstore/json.go +++ b/txstore/json.go @@ -18,9 +18,9 @@ package txstore import ( "github.com/btcsuite/btcd/blockchain" + "github.com/btcsuite/btcd/btcjson" "github.com/btcsuite/btcd/chaincfg" "github.com/btcsuite/btcd/txscript" - "github.com/btcsuite/btcjson" "github.com/btcsuite/btcutil" ) diff --git a/wallet.go b/wallet.go index 217f22e..87825fa 100644 --- a/wallet.go +++ b/wallet.go @@ -27,9 +27,9 @@ import ( "time" "github.com/btcsuite/btcd/blockchain" + "github.com/btcsuite/btcd/btcjson" "github.com/btcsuite/btcd/chaincfg" "github.com/btcsuite/btcd/wire" - "github.com/btcsuite/btcjson" "github.com/btcsuite/btcutil" "github.com/btcsuite/btcwallet/chain" "github.com/btcsuite/btcwallet/keystore"