Update btcws import paths to new location.

This commit is contained in:
Dave Collins 2015-01-16 23:35:26 -06:00
parent 923ca529bd
commit 0ff8ea3848
2 changed files with 6 additions and 6 deletions

View file

@ -1,8 +1,8 @@
btcws btcws
===== =====
[![Build Status](https://travis-ci.org/conformal/btcws.png?branch=master)] [![Build Status](https://travis-ci.org/btcsuite/btcws.png?branch=master)]
(https://travis-ci.org/conformal/btcws) (https://travis-ci.org/btcsuite/btcws)
Package btcws implements extensions to the standard bitcoind JSON-RPC Package btcws implements extensions to the standard bitcoind JSON-RPC
API for the btcd suite of programs (btcd, btcwallet, and btcgui). API for the btcd suite of programs (btcd, btcwallet, and btcgui).
@ -14,7 +14,7 @@ btcjson (using btcjson.RegisterCustomCmd).
// Client Side // Client Side
import ( import (
"golang.org/x/net/websocket" "golang.org/x/net/websocket"
"github.com/conformal/btcws" "github.com/btcsuite/btcws"
) )
// Create rescan command. // Create rescan command.
@ -37,7 +37,7 @@ websocket.JSON.Send(btcdWSConn, cmd)
import ( import (
"golang.org/x/net/websocket" "golang.org/x/net/websocket"
"github.com/conformal/btcjson" "github.com/conformal/btcjson"
"github.com/conformal/btcws" "github.com/btcsuite/btcws"
) )
// Get marshaled request. // Get marshaled request.
@ -60,7 +60,7 @@ if ok {
## Installation ## Installation
```bash ```bash
$ go get github.com/conformal/btcws $ go get github.com/btcsuite/btcws
``` ```
## GPG Verification Key ## GPG Verification Key

View file

@ -8,8 +8,8 @@ import (
"reflect" "reflect"
"testing" "testing"
"github.com/btcsuite/btcws"
"github.com/conformal/btcjson" "github.com/conformal/btcjson"
"github.com/conformal/btcws"
"github.com/davecgh/go-spew/spew" "github.com/davecgh/go-spew/spew"
) )