Update btcnet import paths to new location.

This commit is contained in:
Dave Collins 2015-01-16 17:31:08 -06:00
parent 54ccb83025
commit 2bd21ead0b
9 changed files with 9 additions and 9 deletions

View file

@ -13,11 +13,11 @@ import (
"sync/atomic" "sync/atomic"
"time" "time"
"github.com/btcsuite/btcnet"
"github.com/btcsuite/btcutil" "github.com/btcsuite/btcutil"
"github.com/btcsuite/btcwire" "github.com/btcsuite/btcwire"
"github.com/conformal/btcchain" "github.com/conformal/btcchain"
"github.com/conformal/btcdb" "github.com/conformal/btcdb"
"github.com/conformal/btcnet"
) )
const ( const (

View file

@ -5,8 +5,8 @@
package main package main
import ( import (
"github.com/btcsuite/btcnet"
"github.com/btcsuite/btcwire" "github.com/btcsuite/btcwire"
"github.com/conformal/btcnet"
) )
// activeNetParams is a pointer to the parameters specific to the // activeNetParams is a pointer to the parameters specific to the

View file

@ -26,6 +26,7 @@ import (
"sync/atomic" "sync/atomic"
"time" "time"
"github.com/btcsuite/btcnet"
"github.com/btcsuite/btcutil" "github.com/btcsuite/btcutil"
"github.com/btcsuite/btcwire" "github.com/btcsuite/btcwire"
"github.com/btcsuite/fastsha256" "github.com/btcsuite/fastsha256"
@ -34,7 +35,6 @@ import (
"github.com/conformal/btcdb" "github.com/conformal/btcdb"
"github.com/conformal/btcec" "github.com/conformal/btcec"
"github.com/conformal/btcjson" "github.com/conformal/btcjson"
"github.com/conformal/btcnet"
"github.com/conformal/btcscript" "github.com/conformal/btcscript"
"github.com/conformal/btcws" "github.com/conformal/btcws"
) )

View file

@ -19,12 +19,12 @@ import (
"sync/atomic" "sync/atomic"
"time" "time"
"github.com/btcsuite/btcnet"
"github.com/btcsuite/btcwire" "github.com/btcsuite/btcwire"
"github.com/conformal/btcchain" "github.com/conformal/btcchain"
"github.com/conformal/btcd/addrmgr" "github.com/conformal/btcd/addrmgr"
"github.com/conformal/btcdb" "github.com/conformal/btcdb"
"github.com/conformal/btcjson" "github.com/conformal/btcjson"
"github.com/conformal/btcnet"
) )
const ( const (

View file

@ -9,12 +9,12 @@ import (
"os" "os"
"path/filepath" "path/filepath"
"github.com/btcsuite/btcnet"
"github.com/btcsuite/btcutil" "github.com/btcsuite/btcutil"
"github.com/btcsuite/btcwire" "github.com/btcsuite/btcwire"
flags "github.com/btcsuite/go-flags" flags "github.com/btcsuite/go-flags"
"github.com/conformal/btcdb" "github.com/conformal/btcdb"
_ "github.com/conformal/btcdb/ldb" _ "github.com/conformal/btcdb/ldb"
"github.com/conformal/btcnet"
) )
const ( const (

View file

@ -12,12 +12,12 @@ import (
"strconv" "strconv"
"github.com/btcsuite/btclog" "github.com/btcsuite/btclog"
"github.com/btcsuite/btcnet"
"github.com/btcsuite/btcutil" "github.com/btcsuite/btcutil"
"github.com/btcsuite/btcwire" "github.com/btcsuite/btcwire"
flags "github.com/btcsuite/go-flags" flags "github.com/btcsuite/go-flags"
"github.com/conformal/btcdb" "github.com/conformal/btcdb"
_ "github.com/conformal/btcdb/ldb" _ "github.com/conformal/btcdb/ldb"
"github.com/conformal/btcnet"
) )
type ShaHash btcwire.ShaHash type ShaHash btcwire.ShaHash

View file

@ -9,12 +9,12 @@ import (
"os" "os"
"path/filepath" "path/filepath"
"github.com/btcsuite/btcnet"
"github.com/btcsuite/btcutil" "github.com/btcsuite/btcutil"
"github.com/btcsuite/btcwire" "github.com/btcsuite/btcwire"
flags "github.com/btcsuite/go-flags" flags "github.com/btcsuite/go-flags"
"github.com/conformal/btcdb" "github.com/conformal/btcdb"
_ "github.com/conformal/btcdb/ldb" _ "github.com/conformal/btcdb/ldb"
"github.com/conformal/btcnet"
) )
const ( const (

View file

@ -9,11 +9,11 @@ import (
"os" "os"
"path/filepath" "path/filepath"
"github.com/btcsuite/btcnet"
"github.com/btcsuite/btcwire" "github.com/btcsuite/btcwire"
"github.com/conformal/btcchain" "github.com/conformal/btcchain"
"github.com/conformal/btcdb" "github.com/conformal/btcdb"
_ "github.com/conformal/btcdb/ldb" _ "github.com/conformal/btcdb/ldb"
"github.com/conformal/btcnet"
) )
const blockDbNamePrefix = "blocks" const blockDbNamePrefix = "blocks"

View file

@ -14,12 +14,12 @@ import (
"strconv" "strconv"
"github.com/btcsuite/btclog" "github.com/btcsuite/btclog"
"github.com/btcsuite/btcnet"
"github.com/btcsuite/btcutil" "github.com/btcsuite/btcutil"
"github.com/btcsuite/btcwire" "github.com/btcsuite/btcwire"
flags "github.com/btcsuite/go-flags" flags "github.com/btcsuite/go-flags"
"github.com/conformal/btcdb" "github.com/conformal/btcdb"
_ "github.com/conformal/btcdb/ldb" _ "github.com/conformal/btcdb/ldb"
"github.com/conformal/btcnet"
"github.com/davecgh/go-spew/spew" "github.com/davecgh/go-spew/spew"
) )