Skip to content

Commit

Permalink
Update btcwire import paths to new location.
Browse files Browse the repository at this point in the history
  • Loading branch information
davecgh committed Jan 16, 2015
1 parent 0e8c3b7 commit 54ccb83
Show file tree
Hide file tree
Showing 25 changed files with 25 additions and 25 deletions.
2 changes: 1 addition & 1 deletion addrmgr/addrmanager.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import (
"sync/atomic"
"time"

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

// AddrManager provides a concurrency safe address manager for caching potential
Expand Down
2 changes: 1 addition & 1 deletion addrmgr/addrmanager_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ import (
"testing"
"time"

"github.com/btcsuite/btcwire"
"github.com/conformal/btcd/addrmgr"
"github.com/conformal/btcwire"
)

// naTest is used to describe a test to be perfomed against the NetAddressKey
Expand Down
2 changes: 1 addition & 1 deletion addrmgr/knownaddress.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ package addrmgr
import (
"time"

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

// knownAddress tracks information about a known network address that is used
Expand Down
2 changes: 1 addition & 1 deletion addrmgr/network.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"fmt"
"net"

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

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

"github.com/btcsuite/btcwire"
"github.com/conformal/btcd/addrmgr"
"github.com/conformal/btcwire"
)

// TestIPTypes ensures the various functions which determine the type of an IP
Expand Down
2 changes: 1 addition & 1 deletion blockmanager.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ import (
"time"

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

const (
Expand Down
2 changes: 1 addition & 1 deletion config.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ import (
"time"

"github.com/btcsuite/btcutil"
"github.com/btcsuite/btcwire"
flags "github.com/btcsuite/go-flags"
"github.com/btcsuite/go-socks/socks"
"github.com/conformal/btcdb"
_ "github.com/conformal/btcdb/ldb"
_ "github.com/conformal/btcdb/memdb"
"github.com/conformal/btcwire"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion cpuminer.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ import (
"time"

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

const (
Expand Down
2 changes: 1 addition & 1 deletion log.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ import (
"github.com/conformal/btcd/addrmgr"

"github.com/btcsuite/btclog"
"github.com/btcsuite/btcwire"
"github.com/btcsuite/seelog"
"github.com/conformal/btcchain"
"github.com/conformal/btcdb"
"github.com/conformal/btcscript"
"github.com/conformal/btcwire"
)

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

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

const (
Expand Down
2 changes: 1 addition & 1 deletion mempoolerror.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
package main

import (
"github.com/btcsuite/btcwire"
"github.com/conformal/btcchain"
"github.com/conformal/btcwire"
)

// RuleError identifies a rule violation. It is used to indicate that
Expand Down
2 changes: 1 addition & 1 deletion mining.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ import (
"time"

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

const (
Expand Down
2 changes: 1 addition & 1 deletion mruinvmap.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"container/list"
"fmt"

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

// MruInventoryMap provides a map that is limited to a maximum number of items
Expand Down
2 changes: 1 addition & 1 deletion mruinvmap_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"crypto/rand"
"testing"

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

// BenchmarkMruInventoryList performs basic benchmarks on the most recently
Expand Down
2 changes: 1 addition & 1 deletion params.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
package main

import (
"github.com/btcsuite/btcwire"
"github.com/conformal/btcnet"
"github.com/conformal/btcwire"
)

// activeNetParams is a pointer to the parameters specific to the
Expand Down
2 changes: 1 addition & 1 deletion peer.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ import (

"github.com/btcsuite/btcutil"
"github.com/btcsuite/btcutil/bloom"
"github.com/btcsuite/btcwire"
"github.com/btcsuite/go-socks/socks"
"github.com/conformal/btcchain"
"github.com/conformal/btcd/addrmgr"
"github.com/conformal/btcdb"
"github.com/conformal/btcwire"
"github.com/davecgh/go-spew/spew"
)

Expand Down
2 changes: 1 addition & 1 deletion rpcserver.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ import (
"time"

"github.com/btcsuite/btcutil"
"github.com/btcsuite/btcwire"
"github.com/btcsuite/fastsha256"
"github.com/btcsuite/websocket"
"github.com/conformal/btcchain"
Expand All @@ -35,7 +36,6 @@ import (
"github.com/conformal/btcjson"
"github.com/conformal/btcnet"
"github.com/conformal/btcscript"
"github.com/conformal/btcwire"
"github.com/conformal/btcws"
)

Expand Down
2 changes: 1 addition & 1 deletion rpcwebsocket.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ import (
"golang.org/x/crypto/ripemd160"

"github.com/btcsuite/btcutil"
"github.com/btcsuite/btcwire"
"github.com/btcsuite/fastsha256"
"github.com/btcsuite/websocket"
"github.com/conformal/btcdb"
"github.com/conformal/btcjson"
"github.com/conformal/btcscript"
"github.com/conformal/btcwire"
"github.com/conformal/btcws"
)

Expand Down
2 changes: 1 addition & 1 deletion server.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ import (
"sync/atomic"
"time"

"github.com/btcsuite/btcwire"
"github.com/conformal/btcchain"
"github.com/conformal/btcd/addrmgr"
"github.com/conformal/btcdb"
"github.com/conformal/btcjson"
"github.com/conformal/btcnet"
"github.com/conformal/btcwire"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion util/addblock/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ import (
"path/filepath"

"github.com/btcsuite/btcutil"
"github.com/btcsuite/btcwire"
flags "github.com/btcsuite/go-flags"
"github.com/conformal/btcdb"
_ "github.com/conformal/btcdb/ldb"
"github.com/conformal/btcnet"
"github.com/conformal/btcwire"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion util/addblock/import.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ import (
"time"

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

var zeroHash = btcwire.ShaHash{}
Expand Down
2 changes: 1 addition & 1 deletion util/dropafter/dropafter.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ import (

"github.com/btcsuite/btclog"
"github.com/btcsuite/btcutil"
"github.com/btcsuite/btcwire"
flags "github.com/btcsuite/go-flags"
"github.com/conformal/btcdb"
_ "github.com/conformal/btcdb/ldb"
"github.com/conformal/btcnet"
"github.com/conformal/btcwire"
)

type ShaHash btcwire.ShaHash
Expand Down
2 changes: 1 addition & 1 deletion util/findcheckpoint/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ import (
"path/filepath"

"github.com/btcsuite/btcutil"
"github.com/btcsuite/btcwire"
flags "github.com/btcsuite/go-flags"
"github.com/conformal/btcdb"
_ "github.com/conformal/btcdb/ldb"
"github.com/conformal/btcnet"
"github.com/conformal/btcwire"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion util/findcheckpoint/findcheckpoint.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ import (
"os"
"path/filepath"

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

const blockDbNamePrefix = "blocks"
Expand Down
2 changes: 1 addition & 1 deletion util/showblock/showblock.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ import (

"github.com/btcsuite/btclog"
"github.com/btcsuite/btcutil"
"github.com/btcsuite/btcwire"
flags "github.com/btcsuite/go-flags"
"github.com/conformal/btcdb"
_ "github.com/conformal/btcdb/ldb"
"github.com/conformal/btcnet"
"github.com/conformal/btcwire"
"github.com/davecgh/go-spew/spew"
)

Expand Down

0 comments on commit 54ccb83

Please sign in to comment.