Skip to content

Commit

Permalink
Update btcutil import paths to new location.
Browse files Browse the repository at this point in the history
  • Loading branch information
davecgh committed Jan 15, 2015
1 parent 4e41922 commit ee945cd
Show file tree
Hide file tree
Showing 14 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion accept.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ package btcchain
import (
"fmt"

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

// maybeAcceptBlock potentially accepts a block into the memory block chain.
Expand Down
2 changes: 1 addition & 1 deletion chain.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ import (
"sync"
"time"

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

Expand Down
2 changes: 1 addition & 1 deletion chain_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ package btcchain_test
import (
"testing"

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

Expand Down
2 changes: 1 addition & 1 deletion checkpoints.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ package btcchain
import (
"fmt"

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

Expand Down
2 changes: 1 addition & 1 deletion common_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ import (
"path/filepath"
"strings"

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

Expand Down
2 changes: 1 addition & 1 deletion 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/btcutil"
"github.com/conformal/btcchain"
"github.com/conformal/btcdb"
_ "github.com/conformal/btcdb/memdb"
"github.com/conformal/btcnet"
"github.com/conformal/btcutil"
)

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

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

Expand Down
2 changes: 1 addition & 1 deletion merkle_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ package btcchain_test
import (
"testing"

"github.com/btcsuite/btcutil"
"github.com/conformal/btcchain"
"github.com/conformal/btcutil"
)

// TestMerkle tests the BuildMerkleTreeStore API.
Expand Down
2 changes: 1 addition & 1 deletion process.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ package btcchain
import (
"fmt"

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

Expand Down
2 changes: 1 addition & 1 deletion reorganization_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ import (
"strings"
"testing"

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

Expand Down
2 changes: 1 addition & 1 deletion scriptval.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ import (
"math"
"runtime"

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

Expand Down
2 changes: 1 addition & 1 deletion txlookup.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ package btcchain
import (
"fmt"

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

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/btcutil"
"github.com/conformal/btcdb"
"github.com/conformal/btcnet"
"github.com/conformal/btcscript"
"github.com/conformal/btcutil"
"github.com/conformal/btcwire"
)

Expand Down
2 changes: 1 addition & 1 deletion validate_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ import (
"testing"
"time"

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

Expand Down

0 comments on commit ee945cd

Please sign in to comment.