Skip to content

Commit

Permalink
Update btcdb import paths to new location.
Browse files Browse the repository at this point in the history
  • Loading branch information
davecgh committed Jan 17, 2015
1 parent 9bb251f commit 14056ad
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion chain.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ import (
"sync"
"time"

"github.com/btcsuite/btcdb"
"github.com/btcsuite/btcnet"
"github.com/btcsuite/btcutil"
"github.com/btcsuite/btcwire"
"github.com/conformal/btcdb"
)

const (
Expand Down
6 changes: 3 additions & 3 deletions common_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ import (
"path/filepath"
"strings"

"github.com/btcsuite/btcdb"
_ "github.com/btcsuite/btcdb/ldb"
_ "github.com/btcsuite/btcdb/memdb"
"github.com/btcsuite/btcnet"
"github.com/btcsuite/btcutil"
"github.com/btcsuite/btcwire"
"github.com/conformal/btcchain"
"github.com/conformal/btcdb"
_ "github.com/conformal/btcdb/ldb"
_ "github.com/conformal/btcdb/memdb"
)

// testDbType is the database backend type to use for the tests.
Expand Down
4 changes: 2 additions & 2 deletions example_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ import (
"fmt"
"math/big"

"github.com/btcsuite/btcdb"
_ "github.com/btcsuite/btcdb/memdb"
"github.com/btcsuite/btcnet"
"github.com/btcsuite/btcutil"
"github.com/conformal/btcchain"
"github.com/conformal/btcdb"
_ "github.com/conformal/btcdb/memdb"
)

// This example demonstrates how to create a new chain instance and use
Expand Down
2 changes: 1 addition & 1 deletion txlookup.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ package btcchain
import (
"fmt"

"github.com/btcsuite/btcdb"
"github.com/btcsuite/btcutil"
"github.com/btcsuite/btcwire"
"github.com/conformal/btcdb"
)

// TxData contains contextual information about transactions such as which block
Expand Down
2 changes: 1 addition & 1 deletion validate.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ import (
"math/big"
"time"

"github.com/btcsuite/btcdb"
"github.com/btcsuite/btcnet"
"github.com/btcsuite/btcutil"
"github.com/btcsuite/btcwire"
"github.com/conformal/btcdb"
"github.com/conformal/btcscript"
)

Expand Down

0 comments on commit 14056ad

Please sign in to comment.