Update btcjson import paths to new location.

This commit is contained in:
Dave Collins 2015-01-16 23:56:08 -06:00
parent 9e86f74c50
commit 64231158a0
9 changed files with 9 additions and 9 deletions

View file

@ -9,9 +9,9 @@ import (
"encoding/hex" "encoding/hex"
"encoding/json" "encoding/json"
"github.com/btcsuite/btcjson"
"github.com/btcsuite/btcutil" "github.com/btcsuite/btcutil"
"github.com/btcsuite/btcwire" "github.com/btcsuite/btcwire"
"github.com/conformal/btcjson"
) )
// FutureGetBestBlockHashResult is a future promise to deliver the result of a // FutureGetBestBlockHashResult is a future promise to deliver the result of a

View file

@ -9,10 +9,10 @@ import (
"encoding/json" "encoding/json"
"fmt" "fmt"
"github.com/btcsuite/btcjson"
"github.com/btcsuite/btcutil" "github.com/btcsuite/btcutil"
"github.com/btcsuite/btcwire" "github.com/btcsuite/btcwire"
"github.com/btcsuite/btcws" "github.com/btcsuite/btcws"
"github.com/conformal/btcjson"
) )
// FutureDebugLevelResult is a future promise to deliver the result of a // FutureDebugLevelResult is a future promise to deliver the result of a

View file

@ -20,10 +20,10 @@ import (
"sync/atomic" "sync/atomic"
"time" "time"
"github.com/btcsuite/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"
"github.com/conformal/btcjson"
) )
var ( var (

View file

@ -9,8 +9,8 @@ import (
"encoding/json" "encoding/json"
"errors" "errors"
"github.com/btcsuite/btcjson"
"github.com/btcsuite/btcutil" "github.com/btcsuite/btcutil"
"github.com/conformal/btcjson"
) )
// FutureGetGenerateResult is a future promise to deliver the result of a // FutureGetGenerateResult is a future promise to deliver the result of a

2
net.go
View file

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

View file

@ -13,10 +13,10 @@ import (
"sync" "sync"
"time" "time"
"github.com/btcsuite/btcjson"
"github.com/btcsuite/btcutil" "github.com/btcsuite/btcutil"
"github.com/btcsuite/btcwire" "github.com/btcsuite/btcwire"
"github.com/btcsuite/btcws" "github.com/btcsuite/btcws"
"github.com/conformal/btcjson"
) )
var ( var (

View file

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

View file

@ -9,9 +9,9 @@ import (
"encoding/hex" "encoding/hex"
"encoding/json" "encoding/json"
"github.com/btcsuite/btcjson"
"github.com/btcsuite/btcutil" "github.com/btcsuite/btcutil"
"github.com/btcsuite/btcwire" "github.com/btcsuite/btcwire"
"github.com/conformal/btcjson"
) )
// SigHashType enumerates the available signature hashing types that the // SigHashType enumerates the available signature hashing types that the

View file

@ -8,11 +8,11 @@ import (
"encoding/json" "encoding/json"
"strconv" "strconv"
"github.com/btcsuite/btcjson"
"github.com/btcsuite/btcnet" "github.com/btcsuite/btcnet"
"github.com/btcsuite/btcutil" "github.com/btcsuite/btcutil"
"github.com/btcsuite/btcwire" "github.com/btcsuite/btcwire"
"github.com/btcsuite/btcws" "github.com/btcsuite/btcws"
"github.com/conformal/btcjson"
) )
// ***************************** // *****************************