Skip to content

Commit

Permalink
Update go-flags 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 fc6a10c commit 8975c0c
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion config.go
Expand Up @@ -17,11 +17,11 @@ import (
"time"

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

Expand Down
2 changes: 1 addition & 1 deletion util/addblock/config.go
Expand Up @@ -10,11 +10,11 @@ import (
"path/filepath"

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

const (
Expand Down
2 changes: 1 addition & 1 deletion util/btcctl/btcctl.go
Expand Up @@ -11,9 +11,9 @@ import (
"strconv"

"github.com/btcsuite/btcutil"
flags "github.com/btcsuite/go-flags"
"github.com/conformal/btcjson"
"github.com/conformal/btcws"
flags "github.com/conformal/go-flags"
"github.com/davecgh/go-spew/spew"
)

Expand Down
2 changes: 1 addition & 1 deletion util/btcctl/config.go
Expand Up @@ -8,7 +8,7 @@ import (
"strings"

"github.com/btcsuite/btcutil"
flags "github.com/conformal/go-flags"
flags "github.com/btcsuite/go-flags"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion util/dropafter/dropafter.go
Expand Up @@ -12,12 +12,12 @@ import (
"strconv"

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

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

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

const (
Expand Down
2 changes: 1 addition & 1 deletion util/gencerts/gencerts.go
Expand Up @@ -13,7 +13,7 @@ import (
"time"

"github.com/btcsuite/btcutil"
flags "github.com/conformal/go-flags"
flags "github.com/btcsuite/go-flags"
)

type config struct {
Expand Down
2 changes: 1 addition & 1 deletion util/showblock/showblock.go
Expand Up @@ -14,12 +14,12 @@ import (
"strconv"

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

Expand Down

0 comments on commit 8975c0c

Please sign in to comment.