Skip to content

Commit

Permalink
Update btcjson import paths to new location.
Browse files Browse the repository at this point in the history
  • Loading branch information
davecgh committed Jan 17, 2015
1 parent b94598d commit 578d1de
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions 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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion jsonapi_test.go
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion jsonfxns_test.go
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion jsonresults_test.go
Expand Up @@ -9,7 +9,7 @@ import (
"encoding/json"
"testing"

"github.com/conformal/btcjson"
"github.com/btcsuite/btcjson"
)

var resulttests = []struct {
Expand Down

0 comments on commit 578d1de

Please sign in to comment.