Update btcjson path import paths to new location.

This commit is contained in:
Dave Collins 2015-02-19 12:00:51 -06:00
parent 7d4e1e17f0
commit 23ab2bf329
9 changed files with 9 additions and 9 deletions

View file

@ -9,8 +9,8 @@ import (
"encoding/hex" "encoding/hex"
"encoding/json" "encoding/json"
"github.com/btcsuite/btcd/btcjson"
"github.com/btcsuite/btcd/wire" "github.com/btcsuite/btcd/wire"
"github.com/btcsuite/btcjson"
"github.com/btcsuite/btcutil" "github.com/btcsuite/btcutil"
) )

View file

@ -9,8 +9,8 @@ import (
"encoding/json" "encoding/json"
"fmt" "fmt"
"github.com/btcsuite/btcd/btcjson"
"github.com/btcsuite/btcd/wire" "github.com/btcsuite/btcd/wire"
"github.com/btcsuite/btcjson"
"github.com/btcsuite/btcutil" "github.com/btcsuite/btcutil"
"github.com/btcsuite/btcws" "github.com/btcsuite/btcws"
) )

View file

@ -20,7 +20,7 @@ import (
"sync/atomic" "sync/atomic"
"time" "time"
"github.com/btcsuite/btcjson" "github.com/btcsuite/btcd/btcjson"
"github.com/btcsuite/btcws" "github.com/btcsuite/btcws"
"github.com/btcsuite/go-socks/socks" "github.com/btcsuite/go-socks/socks"
"github.com/btcsuite/websocket" "github.com/btcsuite/websocket"

View file

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

2
net.go
View file

@ -7,7 +7,7 @@ package btcrpcclient
import ( import (
"encoding/json" "encoding/json"
"github.com/btcsuite/btcjson" "github.com/btcsuite/btcd/btcjson"
) )
// AddNodeCommand enumerates the available commands that the AddNode function // AddNodeCommand enumerates the available commands that the AddNode function

View file

@ -13,8 +13,8 @@ import (
"sync" "sync"
"time" "time"
"github.com/btcsuite/btcd/btcjson"
"github.com/btcsuite/btcd/wire" "github.com/btcsuite/btcd/wire"
"github.com/btcsuite/btcjson"
"github.com/btcsuite/btcutil" "github.com/btcsuite/btcutil"
"github.com/btcsuite/btcws" "github.com/btcsuite/btcws"
) )

View file

@ -8,7 +8,7 @@ import (
"encoding/json" "encoding/json"
"errors" "errors"
"github.com/btcsuite/btcjson" "github.com/btcsuite/btcd/btcjson"
) )
// rawRequest satisifies the btcjson.Cmd interface for btcjson raw commands. // rawRequest satisifies the btcjson.Cmd interface for btcjson raw commands.

View file

@ -9,8 +9,8 @@ import (
"encoding/hex" "encoding/hex"
"encoding/json" "encoding/json"
"github.com/btcsuite/btcd/btcjson"
"github.com/btcsuite/btcd/wire" "github.com/btcsuite/btcd/wire"
"github.com/btcsuite/btcjson"
"github.com/btcsuite/btcutil" "github.com/btcsuite/btcutil"
) )

View file

@ -8,9 +8,9 @@ import (
"encoding/json" "encoding/json"
"strconv" "strconv"
"github.com/btcsuite/btcd/btcjson"
"github.com/btcsuite/btcd/chaincfg" "github.com/btcsuite/btcd/chaincfg"
"github.com/btcsuite/btcd/wire" "github.com/btcsuite/btcd/wire"
"github.com/btcsuite/btcjson"
"github.com/btcsuite/btcutil" "github.com/btcsuite/btcutil"
"github.com/btcsuite/btcws" "github.com/btcsuite/btcws"
) )