From d71bc3193ffa8b496a4e2f8be5d1c8e565237b19 Mon Sep 17 00:00:00 2001 From: Dave Collins Date: Thu, 15 Jan 2015 21:28:09 -0600 Subject: [PATCH] Update btcrpcclient import paths to new location. --- chain/chain.go | 2 +- rpcserver.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/chain/chain.go b/chain/chain.go index 134a02b..eb79ffa 100644 --- a/chain/chain.go +++ b/chain/chain.go @@ -21,9 +21,9 @@ import ( "sync" "time" + "github.com/btcsuite/btcrpcclient" "github.com/btcsuite/btcutil" "github.com/conformal/btcnet" - "github.com/conformal/btcrpcclient" "github.com/conformal/btcwallet/keystore" "github.com/conformal/btcwallet/txstore" "github.com/conformal/btcwire" diff --git a/rpcserver.go b/rpcserver.go index d03bd3d..d175eaa 100644 --- a/rpcserver.go +++ b/rpcserver.go @@ -37,11 +37,11 @@ import ( "sync/atomic" "time" + "github.com/btcsuite/btcrpcclient" "github.com/btcsuite/btcutil" "github.com/btcsuite/websocket" "github.com/conformal/btcec" "github.com/conformal/btcjson" - "github.com/conformal/btcrpcclient" "github.com/conformal/btcscript" "github.com/conformal/btcwallet/chain" "github.com/conformal/btcwallet/keystore"