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 // Server Side
import ( import (
"golang.org/x/net/websocket" "golang.org/x/net/websocket"
"github.com/conformal/btcjson" "github.com/btcsuite/btcjson"
"github.com/btcsuite/btcws" "github.com/btcsuite/btcws"
) )

View file

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

View file

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

View file

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

View file

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