Update btcjson import paths to new location.
This commit is contained in:
parent
b94598da55
commit
578d1debc5
4 changed files with 8 additions and 8 deletions
10
README.md
10
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
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -9,7 +9,7 @@ import (
|
|||
"encoding/json"
|
||||
"testing"
|
||||
|
||||
"github.com/conformal/btcjson"
|
||||
"github.com/btcsuite/btcjson"
|
||||
)
|
||||
|
||||
var resulttests = []struct {
|
||||
|
|
Loading…
Add table
Reference in a new issue