Update btcjson path import paths to new location.

This commit is contained in:
Dave Collins 2015-02-19 11:54:02 -06:00
parent d68ac86944
commit b8f3da692e
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/btcsuite/btcjson"
"github.com/btcsuite/btcd/btcjson"
"github.com/btcsuite/btcws"
)

View file

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

View file

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

View file

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

View file

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