From 0ff8ea38484570177b9775e803d567d9f4296ff9 Mon Sep 17 00:00:00 2001 From: Dave Collins Date: Fri, 16 Jan 2015 23:35:26 -0600 Subject: [PATCH] Update btcws import paths to new location. --- README.md | 10 +++++----- notifications_test.go | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 0ce3e60e..c2646f82 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,8 @@ btcws ===== -[![Build Status](https://travis-ci.org/conformal/btcws.png?branch=master)] -(https://travis-ci.org/conformal/btcws) +[![Build Status](https://travis-ci.org/btcsuite/btcws.png?branch=master)] +(https://travis-ci.org/btcsuite/btcws) Package btcws implements extensions to the standard bitcoind JSON-RPC API for the btcd suite of programs (btcd, btcwallet, and btcgui). @@ -14,7 +14,7 @@ btcjson (using btcjson.RegisterCustomCmd). // Client Side import ( "golang.org/x/net/websocket" - "github.com/conformal/btcws" + "github.com/btcsuite/btcws" ) // Create rescan command. @@ -37,7 +37,7 @@ websocket.JSON.Send(btcdWSConn, cmd) import ( "golang.org/x/net/websocket" "github.com/conformal/btcjson" - "github.com/conformal/btcws" + "github.com/btcsuite/btcws" ) // Get marshaled request. @@ -60,7 +60,7 @@ if ok { ## Installation ```bash -$ go get github.com/conformal/btcws +$ go get github.com/btcsuite/btcws ``` ## GPG Verification Key diff --git a/notifications_test.go b/notifications_test.go index f473b4e9..a2d37436 100644 --- a/notifications_test.go +++ b/notifications_test.go @@ -8,8 +8,8 @@ import ( "reflect" "testing" + "github.com/btcsuite/btcws" "github.com/conformal/btcjson" - "github.com/conformal/btcws" "github.com/davecgh/go-spew/spew" )