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
|
btcjson
|
||||||
=======
|
=======
|
||||||
|
|
||||||
[![Build Status](https://travis-ci.org/conformal/btcjson.png?branch=master)]
|
[![Build Status](https://travis-ci.org/btcsuite/btcjson.png?branch=master)]
|
||||||
(https://travis-ci.org/conformal/btcjson)
|
(https://travis-ci.org/btcsuite/btcjson)
|
||||||
|
|
||||||
Package btcjson implements the bitcoin JSON-RPC API. There is a test
|
Package btcjson implements the bitcoin JSON-RPC API. There is a test
|
||||||
suite which is aiming to reach 100% code coverage. See
|
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
|
Full `go doc` style documentation for the project can be viewed online without
|
||||||
installing this package by using the GoDoc site
|
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
|
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
|
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
|
## Installation
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
$ go get github.com/conformal/btcjson
|
$ go get github.com/btcsuite/btcjson
|
||||||
```
|
```
|
||||||
|
|
||||||
## TODO
|
## TODO
|
||||||
|
|
|
@ -11,7 +11,7 @@ import (
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"github.com/conformal/btcjson"
|
"github.com/btcsuite/btcjson"
|
||||||
)
|
)
|
||||||
|
|
||||||
// cmdtests is a table of all the possible commands and a list of inputs,
|
// cmdtests is a table of all the possible commands and a list of inputs,
|
||||||
|
|
|
@ -9,7 +9,7 @@ import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"github.com/conformal/btcjson"
|
"github.com/btcsuite/btcjson"
|
||||||
)
|
)
|
||||||
|
|
||||||
// TestMarshallAndSend tests the MarshallAndSend function to make sure it can
|
// TestMarshallAndSend tests the MarshallAndSend function to make sure it can
|
||||||
|
|
|
@ -9,7 +9,7 @@ import (
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"github.com/conformal/btcjson"
|
"github.com/btcsuite/btcjson"
|
||||||
)
|
)
|
||||||
|
|
||||||
var resulttests = []struct {
|
var resulttests = []struct {
|
||||||
|
|
Loading…
Add table
Reference in a new issue