Update btcjson import paths to new location.

This commit is contained in:
Dave Collins 2015-01-16 23:54:00 -06:00
parent 0ff8ea3848
commit 80aaecd8a2
5 changed files with 5 additions and 5 deletions

View file

@ -36,7 +36,7 @@ websocket.JSON.Send(btcdWSConn, cmd)
// Server Side
import (
"golang.org/x/net/websocket"
"github.com/conformal/btcjson"
"github.com/btcsuite/btcjson"
"github.com/btcsuite/btcws"
)

View file

@ -8,8 +8,8 @@ import (
"encoding/json"
"errors"
"github.com/btcsuite/btcjson"
"github.com/btcsuite/btcwire"
"github.com/conformal/btcjson"
)
// Help texts

View file

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

View file

@ -8,7 +8,7 @@ import (
"encoding/json"
"errors"
"github.com/conformal/btcjson"
"github.com/btcsuite/btcjson"
)
var (

View file

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