Update btcwire import paths to new location.

This commit is contained in:
Dave Collins 2015-01-16 16:03:04 -06:00
parent 2f79c3176e
commit 283aa28be5
17 changed files with 17 additions and 17 deletions

View file

@ -23,10 +23,10 @@ import (
"github.com/btcsuite/btcrpcclient"
"github.com/btcsuite/btcutil"
"github.com/btcsuite/btcwire"
"github.com/conformal/btcnet"
"github.com/conformal/btcwallet/keystore"
"github.com/conformal/btcwallet/txstore"
"github.com/conformal/btcwire"
"github.com/conformal/btcws"
)

View file

@ -25,8 +25,8 @@ import (
"strings"
"github.com/btcsuite/btcutil"
"github.com/btcsuite/btcwire"
flags "github.com/btcsuite/go-flags"
"github.com/conformal/btcwire"
)
const (

View file

@ -24,11 +24,11 @@ import (
"time"
"github.com/btcsuite/btcutil"
"github.com/btcsuite/btcwire"
"github.com/conformal/btcchain"
"github.com/conformal/btcscript"
"github.com/conformal/btcwallet/keystore"
"github.com/conformal/btcwallet/txstore"
"github.com/conformal/btcwire"
)
const (

View file

@ -7,10 +7,10 @@ import (
"testing"
"github.com/btcsuite/btcutil"
"github.com/btcsuite/btcwire"
"github.com/conformal/btcscript"
"github.com/conformal/btcwallet/keystore"
"github.com/conformal/btcwallet/txstore"
"github.com/conformal/btcwire"
)
// This is a tx that transfers funds (0.371 BTC) to addresses of known privKeys.

View file

@ -13,9 +13,9 @@ import (
"testing"
"github.com/btcsuite/btcutil"
"github.com/btcsuite/btcwire"
"github.com/conformal/btcscript"
"github.com/conformal/btcwallet/tx"
"github.com/conformal/btcwire"
)
func init() {

View file

@ -37,11 +37,11 @@ import (
"golang.org/x/crypto/ripemd160"
"github.com/btcsuite/btcutil"
"github.com/btcsuite/btcwire"
"github.com/conformal/btcec"
"github.com/conformal/btcnet"
"github.com/conformal/btcscript"
"github.com/conformal/btcwallet/rename"
"github.com/conformal/btcwire"
)
const (

View file

@ -24,10 +24,10 @@ import (
"testing"
"github.com/btcsuite/btcutil"
"github.com/btcsuite/btcwire"
"github.com/conformal/btcec"
"github.com/conformal/btcnet"
"github.com/conformal/btcscript"
"github.com/conformal/btcwire"
"github.com/davecgh/go-spew/spew"
)

View file

@ -18,9 +18,9 @@ package main
import (
"github.com/btcsuite/btcutil"
"github.com/btcsuite/btcwire"
"github.com/conformal/btcwallet/chain"
"github.com/conformal/btcwallet/keystore"
"github.com/conformal/btcwire"
)
// RescanProgressMsg reports the current progress made by a rescan for a

View file

@ -39,6 +39,7 @@ import (
"github.com/btcsuite/btcrpcclient"
"github.com/btcsuite/btcutil"
"github.com/btcsuite/btcwire"
"github.com/btcsuite/websocket"
"github.com/conformal/btcec"
"github.com/conformal/btcjson"
@ -46,7 +47,6 @@ import (
"github.com/conformal/btcwallet/chain"
"github.com/conformal/btcwallet/keystore"
"github.com/conformal/btcwallet/txstore"
"github.com/conformal/btcwire"
"github.com/conformal/btcws"
)

View file

@ -28,8 +28,8 @@ import (
"time"
"github.com/btcsuite/btcutil"
"github.com/btcsuite/btcwire"
"github.com/conformal/btcwallet/rename"
"github.com/conformal/btcwire"
)
// filename is the name of the file typically used to save a transaction

View file

@ -25,10 +25,10 @@ import (
"time"
"github.com/btcsuite/btcutil"
"github.com/btcsuite/btcwire"
"github.com/conformal/btcchain"
"github.com/conformal/btcnet"
"github.com/conformal/btcscript"
"github.com/conformal/btcwire"
)
var (

View file

@ -21,9 +21,9 @@ import (
"time"
"github.com/btcsuite/btcutil"
"github.com/btcsuite/btcwire"
"github.com/conformal/btcnet"
. "github.com/conformal/btcwallet/txstore"
"github.com/conformal/btcwire"
)
// Received transaction output for mainnet outpoint

View file

@ -22,9 +22,9 @@ import (
"fmt"
"time"
"github.com/btcsuite/btcwire"
"github.com/btcsuite/fastsha256"
"github.com/conformal/btcwallet/walletdb"
"github.com/conformal/btcwire"
)
const (

View file

@ -22,11 +22,11 @@ import (
"github.com/btcsuite/btcutil"
"github.com/btcsuite/btcutil/hdkeychain"
"github.com/btcsuite/btcwire"
"github.com/conformal/btcec"
"github.com/conformal/btcnet"
"github.com/conformal/btcwallet/snacl"
"github.com/conformal/btcwallet/walletdb"
"github.com/conformal/btcwire"
)
const (

View file

@ -24,10 +24,10 @@ import (
"testing"
"github.com/btcsuite/btcutil"
"github.com/btcsuite/btcwire"
"github.com/conformal/btcnet"
"github.com/conformal/btcwallet/waddrmgr"
"github.com/conformal/btcwallet/walletdb"
"github.com/conformal/btcwire"
)
// newShaHash converts the passed big-endian hex string into a btcwire.ShaHash.

View file

@ -19,8 +19,8 @@ package waddrmgr
import (
"sync"
"github.com/btcsuite/btcwire"
"github.com/conformal/btcwallet/walletdb"
"github.com/conformal/btcwire"
)
const (

View file

@ -27,13 +27,13 @@ import (
"time"
"github.com/btcsuite/btcutil"
"github.com/btcsuite/btcwire"
"github.com/conformal/btcchain"
"github.com/conformal/btcjson"
"github.com/conformal/btcnet"
"github.com/conformal/btcwallet/chain"
"github.com/conformal/btcwallet/keystore"
"github.com/conformal/btcwallet/txstore"
"github.com/conformal/btcwire"
)
var (