Update btcnet import paths to new location.

This commit is contained in:
Dave Collins 2015-01-16 17:28:19 -06:00
parent 3a35b009ac
commit 9bb251f530
7 changed files with 7 additions and 7 deletions

View file

@ -13,10 +13,10 @@ import (
"sync" "sync"
"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/btcdb" "github.com/conformal/btcdb"
"github.com/conformal/btcnet"
) )
const ( const (

View file

@ -7,10 +7,10 @@ package btcchain_test
import ( import (
"testing" "testing"
"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/btcnet"
) )
// TestHaveBlock tests the HaveBlock API to ensure proper functionality. // TestHaveBlock tests the HaveBlock API to ensure proper functionality.

View file

@ -7,9 +7,9 @@ package btcchain
import ( import (
"fmt" "fmt"
"github.com/btcsuite/btcnet"
"github.com/btcsuite/btcutil" "github.com/btcsuite/btcutil"
"github.com/btcsuite/btcwire" "github.com/btcsuite/btcwire"
"github.com/conformal/btcnet"
"github.com/conformal/btcscript" "github.com/conformal/btcscript"
) )

View file

@ -13,13 +13,13 @@ import (
"path/filepath" "path/filepath"
"strings" "strings"
"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/btcdb/ldb" _ "github.com/conformal/btcdb/ldb"
_ "github.com/conformal/btcdb/memdb" _ "github.com/conformal/btcdb/memdb"
"github.com/conformal/btcnet"
) )
// testDbType is the database backend type to use for the tests. // testDbType is the database backend type to use for the tests.

View file

@ -8,11 +8,11 @@ import (
"fmt" "fmt"
"math/big" "math/big"
"github.com/btcsuite/btcnet"
"github.com/btcsuite/btcutil" "github.com/btcsuite/btcutil"
"github.com/conformal/btcchain" "github.com/conformal/btcchain"
"github.com/conformal/btcdb" "github.com/conformal/btcdb"
_ "github.com/conformal/btcdb/memdb" _ "github.com/conformal/btcdb/memdb"
"github.com/conformal/btcnet"
) )
// This example demonstrates how to create a new chain instance and use // This example demonstrates how to create a new chain instance and use

View file

@ -11,10 +11,10 @@ import (
"math/big" "math/big"
"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/btcdb" "github.com/conformal/btcdb"
"github.com/conformal/btcnet"
"github.com/conformal/btcscript" "github.com/conformal/btcscript"
) )

View file

@ -10,10 +10,10 @@ import (
"testing" "testing"
"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/btcnet"
) )
// TestCheckConnectBlock tests the CheckConnectBlock function to ensure it // TestCheckConnectBlock tests the CheckConnectBlock function to ensure it