From 06ed33b65a49bba64bf311d50078097e8c2812a7 Mon Sep 17 00:00:00 2001 From: Dave Collins Date: Fri, 16 Jan 2015 23:58:53 -0600 Subject: [PATCH] Update btcjson 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 462c101..36c8dda 100644 --- a/rpcserver.go +++ b/rpcserver.go @@ -38,13 +38,13 @@ import ( "time" "github.com/btcsuite/btcec" + "github.com/btcsuite/btcjson" "github.com/btcsuite/btcrpcclient" "github.com/btcsuite/btcscript" "github.com/btcsuite/btcutil" "github.com/btcsuite/btcwire" "github.com/btcsuite/btcws" "github.com/btcsuite/websocket" - "github.com/conformal/btcjson" "github.com/conformal/btcwallet/chain" "github.com/conformal/btcwallet/keystore" "github.com/conformal/btcwallet/txstore" diff --git a/txstore/json.go b/txstore/json.go index 8ca350f..67629ff 100644 --- a/txstore/json.go +++ b/txstore/json.go @@ -18,10 +18,10 @@ package txstore import ( "github.com/btcsuite/btcchain" + "github.com/btcsuite/btcjson" "github.com/btcsuite/btcnet" "github.com/btcsuite/btcscript" "github.com/btcsuite/btcutil" - "github.com/conformal/btcjson" ) // ToJSON returns a slice of btcjson listtransactions result types for all credits diff --git a/wallet.go b/wallet.go index 2ce2caa..081a035 100644 --- a/wallet.go +++ b/wallet.go @@ -27,10 +27,10 @@ import ( "time" "github.com/btcsuite/btcchain" + "github.com/btcsuite/btcjson" "github.com/btcsuite/btcnet" "github.com/btcsuite/btcutil" "github.com/btcsuite/btcwire" - "github.com/conformal/btcjson" "github.com/conformal/btcwallet/chain" "github.com/conformal/btcwallet/keystore" "github.com/conformal/btcwallet/txstore"