Skip to content

Commit

Permalink
s/conformal/btcsuite/
Browse files Browse the repository at this point in the history
  • Loading branch information
shazow committed Jan 30, 2015
1 parent 715639a commit 8c27eb8
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion client.go
@@ -1,7 +1,7 @@
package main

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

type Client struct {
Expand Down
2 changes: 1 addition & 1 deletion crawler.go
Expand Up @@ -4,7 +4,7 @@ import (
"sync"
"time"

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

// TODO: Break Client/Peer/Crawler into separate modules.
Expand Down
6 changes: 3 additions & 3 deletions ext_btcd.go
@@ -1,11 +1,11 @@
// Things borrowed from https://github.com/conformal/btcd/blob/master/addrmanager.go
// because "github.com/conformal/btcd" wouldn't import for some reason.
// Things borrowed from https://github.com/btcsuite/btcd/blob/master/addrmanager.go
// because "github.com/btcsuite/btcd" wouldn't import for some reason.

package main

import (
"encoding/base32"
"github.com/conformal/btcwire"
"github.com/btcsuite/btcwire"
"net"
"strconv"
"strings"
Expand Down
2 changes: 1 addition & 1 deletion peer.go
Expand Up @@ -5,7 +5,7 @@ import (
"net"
"time"

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

type Peer struct {
Expand Down
2 changes: 1 addition & 1 deletion seed.go
Expand Up @@ -4,7 +4,7 @@ import (
"net"
"sync"

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

func GetSeedsFromDNS(dnsSeeds []string) []string {
Expand Down

0 comments on commit 8c27eb8

Please sign in to comment.