Update btcwire import paths to new location.

This commit is contained in:
Dave Collins 2015-01-16 13:57:29 -06:00
parent 37d0e1918b
commit 3a35b009ac
13 changed files with 13 additions and 13 deletions

View file

@ -5,7 +5,7 @@
package btcchain package btcchain
import ( import (
"github.com/conformal/btcwire" "github.com/btcsuite/btcwire"
) )
// BlockLocator is used to help locate a specific block. The algorithm for // BlockLocator is used to help locate a specific block. The algorithm for

View file

@ -14,9 +14,9 @@ import (
"time" "time"
"github.com/btcsuite/btcutil" "github.com/btcsuite/btcutil"
"github.com/btcsuite/btcwire"
"github.com/conformal/btcdb" "github.com/conformal/btcdb"
"github.com/conformal/btcnet" "github.com/conformal/btcnet"
"github.com/conformal/btcwire"
) )
const ( const (

View file

@ -8,9 +8,9 @@ import (
"testing" "testing"
"github.com/btcsuite/btcutil" "github.com/btcsuite/btcutil"
"github.com/btcsuite/btcwire"
"github.com/conformal/btcchain" "github.com/conformal/btcchain"
"github.com/conformal/btcnet" "github.com/conformal/btcnet"
"github.com/conformal/btcwire"
) )
// TestHaveBlock tests the HaveBlock API to ensure proper functionality. // TestHaveBlock tests the HaveBlock API to ensure proper functionality.

View file

@ -8,9 +8,9 @@ import (
"fmt" "fmt"
"github.com/btcsuite/btcutil" "github.com/btcsuite/btcutil"
"github.com/btcsuite/btcwire"
"github.com/conformal/btcnet" "github.com/conformal/btcnet"
"github.com/conformal/btcscript" "github.com/conformal/btcscript"
"github.com/conformal/btcwire"
) )
// CheckpointConfirmations is the number of blocks before the end of the current // CheckpointConfirmations is the number of blocks before the end of the current

View file

@ -14,12 +14,12 @@ import (
"strings" "strings"
"github.com/btcsuite/btcutil" "github.com/btcsuite/btcutil"
"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/btcdb/memdb" _ "github.com/conformal/btcdb/memdb"
"github.com/conformal/btcnet" "github.com/conformal/btcnet"
"github.com/conformal/btcwire"
) )
// testDbType is the database backend type to use for the tests. // testDbType is the database backend type to use for the tests.

View file

@ -9,7 +9,7 @@ import (
"math/big" "math/big"
"time" "time"
"github.com/conformal/btcwire" "github.com/btcsuite/btcwire"
) )
const ( const (

View file

@ -8,7 +8,7 @@ import (
"math" "math"
"github.com/btcsuite/btcutil" "github.com/btcsuite/btcutil"
"github.com/conformal/btcwire" "github.com/btcsuite/btcwire"
) )
// nextPowerOfTwo returns the next highest power of two from a given number if // nextPowerOfTwo returns the next highest power of two from a given number if

View file

@ -8,7 +8,7 @@ import (
"fmt" "fmt"
"github.com/btcsuite/btcutil" "github.com/btcsuite/btcutil"
"github.com/conformal/btcwire" "github.com/btcsuite/btcwire"
) )
// BehaviorFlags is a bitmask defining tweaks to the normal behavior when // BehaviorFlags is a bitmask defining tweaks to the normal behavior when

View file

@ -14,8 +14,8 @@ import (
"testing" "testing"
"github.com/btcsuite/btcutil" "github.com/btcsuite/btcutil"
"github.com/btcsuite/btcwire"
"github.com/conformal/btcchain" "github.com/conformal/btcchain"
"github.com/conformal/btcwire"
) )
// TestReorganization loads a set of test blocks which force a chain // TestReorganization loads a set of test blocks which force a chain

View file

@ -10,8 +10,8 @@ import (
"runtime" "runtime"
"github.com/btcsuite/btcutil" "github.com/btcsuite/btcutil"
"github.com/btcsuite/btcwire"
"github.com/conformal/btcscript" "github.com/conformal/btcscript"
"github.com/conformal/btcwire"
) )
// txValidateItem holds a transaction along with which input to validate. // txValidateItem holds a transaction along with which input to validate.

View file

@ -8,8 +8,8 @@ import (
"fmt" "fmt"
"github.com/btcsuite/btcutil" "github.com/btcsuite/btcutil"
"github.com/btcsuite/btcwire"
"github.com/conformal/btcdb" "github.com/conformal/btcdb"
"github.com/conformal/btcwire"
) )
// TxData contains contextual information about transactions such as which block // TxData contains contextual information about transactions such as which block

View file

@ -12,10 +12,10 @@ import (
"time" "time"
"github.com/btcsuite/btcutil" "github.com/btcsuite/btcutil"
"github.com/btcsuite/btcwire"
"github.com/conformal/btcdb" "github.com/conformal/btcdb"
"github.com/conformal/btcnet" "github.com/conformal/btcnet"
"github.com/conformal/btcscript" "github.com/conformal/btcscript"
"github.com/conformal/btcwire"
) )
const ( const (

View file

@ -11,9 +11,9 @@ import (
"time" "time"
"github.com/btcsuite/btcutil" "github.com/btcsuite/btcutil"
"github.com/btcsuite/btcwire"
"github.com/conformal/btcchain" "github.com/conformal/btcchain"
"github.com/conformal/btcnet" "github.com/conformal/btcnet"
"github.com/conformal/btcwire"
) )
// TestCheckConnectBlock tests the CheckConnectBlock function to ensure it // TestCheckConnectBlock tests the CheckConnectBlock function to ensure it