Update btcutil import paths to new location.

This commit is contained in:
Dave Collins 2015-01-15 10:33:06 -06:00
parent 97f3917fcf
commit 0864e31a54
11 changed files with 11 additions and 11 deletions

View file

@ -14,11 +14,11 @@ import (
"strings" "strings"
"testing" "testing"
"github.com/btcsuite/btcutil"
"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/btcutil"
"github.com/conformal/btcwire" "github.com/conformal/btcwire"
) )

2
db.go
View file

@ -7,7 +7,7 @@ package btcdb
import ( import (
"errors" "errors"
"github.com/conformal/btcutil" "github.com/btcsuite/btcutil"
"github.com/conformal/btcwire" "github.com/conformal/btcwire"
) )

View file

@ -7,10 +7,10 @@ package btcdb_test
import ( import (
"fmt" "fmt"
"github.com/btcsuite/btcutil"
"github.com/conformal/btcdb" "github.com/conformal/btcdb"
_ "github.com/conformal/btcdb/memdb" _ "github.com/conformal/btcdb/memdb"
"github.com/conformal/btcnet" "github.com/conformal/btcnet"
"github.com/conformal/btcutil"
) )
// This example demonstrates creating a new database and inserting the genesis // This example demonstrates creating a new database and inserting the genesis

View file

@ -8,8 +8,8 @@ import (
"reflect" "reflect"
"testing" "testing"
"github.com/btcsuite/btcutil"
"github.com/conformal/btcdb" "github.com/conformal/btcdb"
"github.com/conformal/btcutil"
"github.com/conformal/btcwire" "github.com/conformal/btcwire"
"github.com/davecgh/go-spew/spew" "github.com/davecgh/go-spew/spew"
) )

View file

@ -8,9 +8,9 @@ import (
"bytes" "bytes"
"encoding/binary" "encoding/binary"
"github.com/btcsuite/btcutil"
"github.com/btcsuite/goleveldb/leveldb" "github.com/btcsuite/goleveldb/leveldb"
"github.com/conformal/btcdb" "github.com/conformal/btcdb"
"github.com/conformal/btcutil"
"github.com/conformal/btcwire" "github.com/conformal/btcwire"
) )

View file

@ -10,8 +10,8 @@ import (
"path/filepath" "path/filepath"
"testing" "testing"
"github.com/btcsuite/btcutil"
"github.com/conformal/btcdb" "github.com/conformal/btcdb"
"github.com/conformal/btcutil"
"github.com/conformal/btcwire" "github.com/conformal/btcwire"
) )

View file

@ -10,9 +10,9 @@ import (
"path/filepath" "path/filepath"
"testing" "testing"
"github.com/btcsuite/btcutil"
"github.com/conformal/btcdb" "github.com/conformal/btcdb"
_ "github.com/conformal/btcdb/ldb" _ "github.com/conformal/btcdb/ldb"
"github.com/conformal/btcutil"
"github.com/conformal/btcwire" "github.com/conformal/btcwire"
) )

View file

@ -11,11 +11,11 @@ import (
"strconv" "strconv"
"sync" "sync"
"github.com/btcsuite/btcutil"
"github.com/btcsuite/goleveldb/leveldb" "github.com/btcsuite/goleveldb/leveldb"
"github.com/btcsuite/goleveldb/leveldb/opt" "github.com/btcsuite/goleveldb/leveldb/opt"
"github.com/conformal/btcdb" "github.com/conformal/btcdb"
"github.com/conformal/btclog" "github.com/conformal/btclog"
"github.com/conformal/btcutil"
"github.com/conformal/btcwire" "github.com/conformal/btcwire"
) )

View file

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

View file

@ -10,8 +10,8 @@ import (
"math" "math"
"sync" "sync"
"github.com/btcsuite/btcutil"
"github.com/conformal/btcdb" "github.com/conformal/btcdb"
"github.com/conformal/btcutil"
"github.com/conformal/btcwire" "github.com/conformal/btcwire"
) )

View file

@ -8,10 +8,10 @@ import (
"reflect" "reflect"
"testing" "testing"
"github.com/btcsuite/btcutil"
"github.com/conformal/btcdb" "github.com/conformal/btcdb"
"github.com/conformal/btcdb/memdb" "github.com/conformal/btcdb/memdb"
"github.com/conformal/btcnet" "github.com/conformal/btcnet"
"github.com/conformal/btcutil"
"github.com/conformal/btcwire" "github.com/conformal/btcwire"
) )