From 578d1debc5a33c908a547a5460131663ef4b0c42 Mon Sep 17 00:00:00 2001 From: Dave Collins Date: Fri, 16 Jan 2015 23:49:20 -0600 Subject: [PATCH] Update btcjson import paths to new location. --- README.md | 10 +++++----- jsonapi_test.go | 2 +- jsonfxns_test.go | 2 +- jsonresults_test.go | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index e0794bedd0..6621aba53e 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,8 @@ btcjson ======= -[![Build Status](https://travis-ci.org/conformal/btcjson.png?branch=master)] -(https://travis-ci.org/conformal/btcjson) +[![Build Status](https://travis-ci.org/btcsuite/btcjson.png?branch=master)] +(https://travis-ci.org/btcsuite/btcjson) Package btcjson implements the bitcoin JSON-RPC API. There is a test suite which is aiming to reach 100% code coverage. See @@ -46,16 +46,16 @@ useful Go data structures). Full `go doc` style documentation for the project can be viewed online without installing this package by using the GoDoc site -[here](http://godoc.org/github.com/conformal/btcjson). +[here](http://godoc.org/github.com/btcsuite/btcjson). You can also view the documentation locally once the package is installed with the `godoc` tool by running `godoc -http=":6060"` and pointing your browser to -http://localhost:6060/pkg/github.com/conformal/btcjson +http://localhost:6060/pkg/github.com/btcsuite/btcjson ## Installation ```bash -$ go get github.com/conformal/btcjson +$ go get github.com/btcsuite/btcjson ``` ## TODO diff --git a/jsonapi_test.go b/jsonapi_test.go index bb2a608db6..3ec97df53c 100644 --- a/jsonapi_test.go +++ b/jsonapi_test.go @@ -11,7 +11,7 @@ import ( "io/ioutil" "testing" - "github.com/conformal/btcjson" + "github.com/btcsuite/btcjson" ) // cmdtests is a table of all the possible commands and a list of inputs, diff --git a/jsonfxns_test.go b/jsonfxns_test.go index 31bb93aa24..ffe845a9a5 100644 --- a/jsonfxns_test.go +++ b/jsonfxns_test.go @@ -9,7 +9,7 @@ import ( "fmt" "testing" - "github.com/conformal/btcjson" + "github.com/btcsuite/btcjson" ) // TestMarshallAndSend tests the MarshallAndSend function to make sure it can diff --git a/jsonresults_test.go b/jsonresults_test.go index b5510e1e73..1bac3196c0 100644 --- a/jsonresults_test.go +++ b/jsonresults_test.go @@ -9,7 +9,7 @@ import ( "encoding/json" "testing" - "github.com/conformal/btcjson" + "github.com/btcsuite/btcjson" ) var resulttests = []struct {