diff --git a/README.md b/README.md index 16be5d7..3f5d5ab 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,8 @@ btcwallet ========= -[![Build Status](https://travis-ci.org/conformal/btcwallet.png?branch=master)] -(https://travis-ci.org/conformal/btcwallet) +[![Build Status](https://travis-ci.org/btcsuite/btcwallet.png?branch=master)] +(https://travis-ci.org/btcsuite/btcwallet) btcwallet is a daemon handling bitcoin wallet functionality for a single user. It acts as both an RPC client to btcd and an RPC server @@ -48,7 +48,7 @@ https://opensource.conformal.com/packages/windows/btcdsuite/ dependencies: ```bash $ go get -u -v github.com/conformal/btcd/... -$ go get -u -v github.com/conformal/btcwallet/... +$ go get -u -v github.com/btcsuite/btcwallet/... ``` - btcd and btcwallet will now be installed in either ```$GOROOT/bin``` or @@ -69,7 +69,7 @@ https://opensource.conformal.com/packages/windows/btcdsuite/ ```bash $ go get -u -v github.com/conformal/btcd/... -$ go get -u -v github.com/conformal/btcwallet/... +$ go get -u -v github.com/btcsuite/btcwallet/... ``` ## Getting Started @@ -103,7 +103,7 @@ RPC username and password. ```bash $ cp $GOPATH/src/github.com/conformal/btcd/sample-btcd.conf ~/.btcd/btcd.conf -$ cp $GOPATH/src/github.com/conformal/btcwallet/sample-btcwallet.conf ~/.btcwallet/btcwallet.conf +$ cp $GOPATH/src/github.com/btcsuite/btcwallet/sample-btcwallet.conf ~/.btcwallet/btcwallet.conf $ $EDITOR ~/.btcd/btcd.conf $ $EDITOR ~/.btcwallet/btcwallet.conf ``` @@ -122,7 +122,7 @@ JSON (un)marshaling these requests and notifications. ## Issue Tracker -The [integrated github issue tracker](https://github.com/conformal/btcwallet/issues) +The [integrated github issue tracker](https://github.com/btcsuite/btcwallet/issues) is used for this project. ## GPG Verification Key diff --git a/btcwallet.go b/btcwallet.go index eca5d43..c424e1a 100644 --- a/btcwallet.go +++ b/btcwallet.go @@ -24,7 +24,7 @@ import ( "os" "runtime" - "github.com/conformal/btcwallet/chain" + "github.com/btcsuite/btcwallet/chain" ) var ( diff --git a/chain/chain.go b/chain/chain.go index 57e67fe..cf6e064 100644 --- a/chain/chain.go +++ b/chain/chain.go @@ -24,10 +24,10 @@ import ( "github.com/btcsuite/btcnet" "github.com/btcsuite/btcrpcclient" "github.com/btcsuite/btcutil" + "github.com/btcsuite/btcwallet/keystore" + "github.com/btcsuite/btcwallet/txstore" "github.com/btcsuite/btcwire" "github.com/btcsuite/btcws" - "github.com/conformal/btcwallet/keystore" - "github.com/conformal/btcwallet/txstore" ) type Client struct { diff --git a/chainntfns.go b/chainntfns.go index c759ba4..857f694 100644 --- a/chainntfns.go +++ b/chainntfns.go @@ -19,9 +19,9 @@ package main import ( "github.com/btcsuite/btcscript" "github.com/btcsuite/btcutil" - "github.com/conformal/btcwallet/chain" - "github.com/conformal/btcwallet/keystore" - "github.com/conformal/btcwallet/txstore" + "github.com/btcsuite/btcwallet/chain" + "github.com/btcsuite/btcwallet/keystore" + "github.com/btcsuite/btcwallet/txstore" ) func (w *Wallet) handleChainNotifications() { diff --git a/createtx.go b/createtx.go index c9f7733..4b234bd 100644 --- a/createtx.go +++ b/createtx.go @@ -26,9 +26,9 @@ import ( "github.com/btcsuite/btcchain" "github.com/btcsuite/btcscript" "github.com/btcsuite/btcutil" + "github.com/btcsuite/btcwallet/keystore" + "github.com/btcsuite/btcwallet/txstore" "github.com/btcsuite/btcwire" - "github.com/conformal/btcwallet/keystore" - "github.com/conformal/btcwallet/txstore" ) const ( diff --git a/createtx_test.go b/createtx_test.go index 707f731..97a3d09 100644 --- a/createtx_test.go +++ b/createtx_test.go @@ -8,9 +8,9 @@ import ( "github.com/btcsuite/btcscript" "github.com/btcsuite/btcutil" + "github.com/btcsuite/btcwallet/keystore" + "github.com/btcsuite/btcwallet/txstore" "github.com/btcsuite/btcwire" - "github.com/conformal/btcwallet/keystore" - "github.com/conformal/btcwallet/txstore" ) // This is a tx that transfers funds (0.371 BTC) to addresses of known privKeys. diff --git a/createtx_test_disabled.go b/createtx_test_disabled.go index eceb2d3..3bc9d80 100644 --- a/createtx_test_disabled.go +++ b/createtx_test_disabled.go @@ -14,8 +14,8 @@ import ( "github.com/btcsuite/btcscript" "github.com/btcsuite/btcutil" + "github.com/btcsuite/btcwallet/tx" "github.com/btcsuite/btcwire" - "github.com/conformal/btcwallet/tx" ) func init() { diff --git a/keystore/keystore.go b/keystore/keystore.go index 5e2a850..27b6e7a 100644 --- a/keystore/keystore.go +++ b/keystore/keystore.go @@ -40,8 +40,8 @@ import ( "github.com/btcsuite/btcnet" "github.com/btcsuite/btcscript" "github.com/btcsuite/btcutil" + "github.com/btcsuite/btcwallet/rename" "github.com/btcsuite/btcwire" - "github.com/conformal/btcwallet/rename" ) const ( diff --git a/log.go b/log.go index 885c0e6..577444c 100644 --- a/log.go +++ b/log.go @@ -21,9 +21,9 @@ import ( "os" "github.com/btcsuite/btclog" + "github.com/btcsuite/btcwallet/chain" + "github.com/btcsuite/btcwallet/txstore" "github.com/btcsuite/seelog" - "github.com/conformal/btcwallet/chain" - "github.com/conformal/btcwallet/txstore" ) const ( diff --git a/rescan.go b/rescan.go index 85c8523..508f10d 100644 --- a/rescan.go +++ b/rescan.go @@ -18,9 +18,9 @@ package main import ( "github.com/btcsuite/btcutil" + "github.com/btcsuite/btcwallet/chain" + "github.com/btcsuite/btcwallet/keystore" "github.com/btcsuite/btcwire" - "github.com/conformal/btcwallet/chain" - "github.com/conformal/btcwallet/keystore" ) // RescanProgressMsg reports the current progress made by a rescan for a diff --git a/rpcserver.go b/rpcserver.go index 36c8dda..b5b60f1 100644 --- a/rpcserver.go +++ b/rpcserver.go @@ -42,12 +42,12 @@ import ( "github.com/btcsuite/btcrpcclient" "github.com/btcsuite/btcscript" "github.com/btcsuite/btcutil" + "github.com/btcsuite/btcwallet/chain" + "github.com/btcsuite/btcwallet/keystore" + "github.com/btcsuite/btcwallet/txstore" "github.com/btcsuite/btcwire" "github.com/btcsuite/btcws" "github.com/btcsuite/websocket" - "github.com/conformal/btcwallet/chain" - "github.com/conformal/btcwallet/keystore" - "github.com/conformal/btcwallet/txstore" ) // Error types to simplify the reporting of specific categories of diff --git a/txstore/serialization.go b/txstore/serialization.go index 46f4d96..c4ab03d 100644 --- a/txstore/serialization.go +++ b/txstore/serialization.go @@ -28,8 +28,8 @@ import ( "time" "github.com/btcsuite/btcutil" + "github.com/btcsuite/btcwallet/rename" "github.com/btcsuite/btcwire" - "github.com/conformal/btcwallet/rename" ) // filename is the name of the file typically used to save a transaction diff --git a/txstore/tx_test.go b/txstore/tx_test.go index 07b43f3..a5e18d7 100644 --- a/txstore/tx_test.go +++ b/txstore/tx_test.go @@ -22,8 +22,8 @@ import ( "github.com/btcsuite/btcnet" "github.com/btcsuite/btcutil" + . "github.com/btcsuite/btcwallet/txstore" "github.com/btcsuite/btcwire" - . "github.com/conformal/btcwallet/txstore" ) // Received transaction output for mainnet outpoint diff --git a/votingpool/README.md b/votingpool/README.md index af4d8f5..75a51af 100644 --- a/votingpool/README.md +++ b/votingpool/README.md @@ -1,8 +1,8 @@ votingpool ======== -[![Build Status](https://travis-ci.org/conformal/btcwallet.png?branch=master)] -(https://travis-ci.org/conformal/btcwallet) +[![Build Status](https://travis-ci.org/btcsuite/btcwallet.png?branch=master)] +(https://travis-ci.org/btcsuite/btcwallet) Package votingpool provides voting pool functionality for btcwallet as described here: @@ -25,16 +25,16 @@ Note that this is still a work in progress. ## Documentation -[![GoDoc](https://godoc.org/github.com/conformal/btcwallet/votingpool?status.png)] -(http://godoc.org/github.com/conformal/btcwallet/votingpool) +[![GoDoc](https://godoc.org/github.com/btcsuite/btcwallet/votingpool?status.png)] +(http://godoc.org/github.com/btcsuite/btcwallet/votingpool) Full `go doc` style documentation for the project can be viewed online without installing this package by using the GoDoc site here: -http://godoc.org/github.com/conformal/btcwallet/votingpool +http://godoc.org/github.com/btcsuite/btcwallet/votingpool You can also view the documentation locally once the package is installed with the `godoc` tool by running `godoc -http=":6060"` and pointing your browser to -http://localhost:6060/pkg/github.com/conformal/btcwallet/votingpool +http://localhost:6060/pkg/github.com/btcsuite/btcwallet/votingpool Package votingpool is licensed under the [copyfree](http://copyfree.org) ISC License. diff --git a/votingpool/db.go b/votingpool/db.go index e41c900..d153bbc 100644 --- a/votingpool/db.go +++ b/votingpool/db.go @@ -21,9 +21,9 @@ import ( "encoding/binary" "fmt" - "github.com/conformal/btcwallet/snacl" - "github.com/conformal/btcwallet/waddrmgr" - "github.com/conformal/btcwallet/walletdb" + "github.com/btcsuite/btcwallet/snacl" + "github.com/btcsuite/btcwallet/waddrmgr" + "github.com/btcsuite/btcwallet/walletdb" ) // These constants define the serialized length for a given encrypted extended diff --git a/votingpool/example_test.go b/votingpool/example_test.go index b568bbe..ccda019 100644 --- a/votingpool/example_test.go +++ b/votingpool/example_test.go @@ -23,10 +23,10 @@ import ( "path/filepath" "github.com/btcsuite/btcnet" - "github.com/conformal/btcwallet/votingpool" - "github.com/conformal/btcwallet/waddrmgr" - "github.com/conformal/btcwallet/walletdb" - _ "github.com/conformal/btcwallet/walletdb/bdb" + "github.com/btcsuite/btcwallet/votingpool" + "github.com/btcsuite/btcwallet/waddrmgr" + "github.com/btcsuite/btcwallet/walletdb" + _ "github.com/btcsuite/btcwallet/walletdb/bdb" ) func Example_basic() { diff --git a/votingpool/internal_test.go b/votingpool/internal_test.go index be235dc..83009fc 100644 --- a/votingpool/internal_test.go +++ b/votingpool/internal_test.go @@ -18,8 +18,8 @@ package votingpool import ( "github.com/btcsuite/btcutil/hdkeychain" - "github.com/conformal/btcwallet/waddrmgr" - "github.com/conformal/btcwallet/walletdb" + "github.com/btcsuite/btcwallet/waddrmgr" + "github.com/btcsuite/btcwallet/walletdb" ) // TstPutSeries transparently wraps the voting pool putSeries method. diff --git a/votingpool/pool.go b/votingpool/pool.go index 6ee3c61..8cd2ed9 100644 --- a/votingpool/pool.go +++ b/votingpool/pool.go @@ -23,8 +23,8 @@ import ( "github.com/btcsuite/btcscript" "github.com/btcsuite/btcutil" "github.com/btcsuite/btcutil/hdkeychain" - "github.com/conformal/btcwallet/waddrmgr" - "github.com/conformal/btcwallet/walletdb" + "github.com/btcsuite/btcwallet/waddrmgr" + "github.com/btcsuite/btcwallet/walletdb" ) const ( diff --git a/votingpool/pool_test.go b/votingpool/pool_test.go index 6d62d19..7b126ae 100644 --- a/votingpool/pool_test.go +++ b/votingpool/pool_test.go @@ -29,10 +29,10 @@ import ( "github.com/btcsuite/btcnet" "github.com/btcsuite/btcutil/hdkeychain" - "github.com/conformal/btcwallet/votingpool" - "github.com/conformal/btcwallet/waddrmgr" - "github.com/conformal/btcwallet/walletdb" - _ "github.com/conformal/btcwallet/walletdb/bdb" + "github.com/btcsuite/btcwallet/votingpool" + "github.com/btcsuite/btcwallet/waddrmgr" + "github.com/btcsuite/btcwallet/walletdb" + _ "github.com/btcsuite/btcwallet/walletdb/bdb" ) var fastScrypt = &waddrmgr.Options{ diff --git a/waddrmgr/README.md b/waddrmgr/README.md index 2b16561..6499c6d 100644 --- a/waddrmgr/README.md +++ b/waddrmgr/README.md @@ -1,8 +1,8 @@ waddrmgr ======== -[![Build Status](https://travis-ci.org/conformal/btcwallet.png?branch=master)] -(https://travis-ci.org/conformal/btcwallet) +[![Build Status](https://travis-ci.org/btcsuite/btcwallet.png?branch=master)] +(https://travis-ci.org/btcsuite/btcwallet) Package waddrmgr provides a secure hierarchical deterministic wallet address manager. @@ -41,21 +41,21 @@ report. Package waddrmgr is licensed under the liberal ISC license. ## Documentation -[![GoDoc](https://godoc.org/github.com/conformal/btcwallet/waddrmgr?status.png)] -(http://godoc.org/github.com/conformal/btcwallet/waddrmgr) +[![GoDoc](https://godoc.org/github.com/btcsuite/btcwallet/waddrmgr?status.png)] +(http://godoc.org/github.com/btcsuite/btcwallet/waddrmgr) Full `go doc` style documentation for the project can be viewed online without installing this package by using the GoDoc site here: -http://godoc.org/github.com/conformal/btcwallet/waddrmgr +http://godoc.org/github.com/btcsuite/btcwallet/waddrmgr You can also view the documentation locally once the package is installed with the `godoc` tool by running `godoc -http=":6060"` and pointing your browser to -http://localhost:6060/pkg/github.com/conformal/btcwallet/waddrmgr +http://localhost:6060/pkg/github.com/btcsuite/btcwallet/waddrmgr ## Installation ```bash -$ go get github.com/conformal/btcwallet/waddrmgr +$ go get github.com/btcsuite/btcwallet/waddrmgr ``` Package waddrmgr is licensed under the [copyfree](http://copyfree.org) ISC diff --git a/waddrmgr/common_test.go b/waddrmgr/common_test.go index 5362928..8e313dc 100644 --- a/waddrmgr/common_test.go +++ b/waddrmgr/common_test.go @@ -24,9 +24,9 @@ import ( "testing" "github.com/btcsuite/btcnet" - "github.com/conformal/btcwallet/waddrmgr" - "github.com/conformal/btcwallet/walletdb" - _ "github.com/conformal/btcwallet/walletdb/bdb" + "github.com/btcsuite/btcwallet/waddrmgr" + "github.com/btcsuite/btcwallet/walletdb" + _ "github.com/btcsuite/btcwallet/walletdb/bdb" ) var ( diff --git a/waddrmgr/db.go b/waddrmgr/db.go index 72edfd7..506c813 100644 --- a/waddrmgr/db.go +++ b/waddrmgr/db.go @@ -22,9 +22,9 @@ import ( "fmt" "time" + "github.com/btcsuite/btcwallet/walletdb" "github.com/btcsuite/btcwire" "github.com/btcsuite/fastsha256" - "github.com/conformal/btcwallet/walletdb" ) const ( diff --git a/waddrmgr/error_test.go b/waddrmgr/error_test.go index 6175610..5d70989 100644 --- a/waddrmgr/error_test.go +++ b/waddrmgr/error_test.go @@ -20,7 +20,7 @@ import ( "fmt" "testing" - "github.com/conformal/btcwallet/waddrmgr" + "github.com/btcsuite/btcwallet/waddrmgr" ) // TestErrorCodeStringer tests the stringized output for the ErrorCode type. diff --git a/waddrmgr/internal_test.go b/waddrmgr/internal_test.go index fb5c4ed..93b7422 100644 --- a/waddrmgr/internal_test.go +++ b/waddrmgr/internal_test.go @@ -26,7 +26,7 @@ package waddrmgr import ( "errors" - "github.com/conformal/btcwallet/snacl" + "github.com/btcsuite/btcwallet/snacl" ) // TstMaxRecentHashes makes the unexported maxRecentHashes constant available diff --git a/waddrmgr/manager.go b/waddrmgr/manager.go index 3969811..2c41ca6 100644 --- a/waddrmgr/manager.go +++ b/waddrmgr/manager.go @@ -24,9 +24,9 @@ import ( "github.com/btcsuite/btcnet" "github.com/btcsuite/btcutil" "github.com/btcsuite/btcutil/hdkeychain" + "github.com/btcsuite/btcwallet/snacl" + "github.com/btcsuite/btcwallet/walletdb" "github.com/btcsuite/btcwire" - "github.com/conformal/btcwallet/snacl" - "github.com/conformal/btcwallet/walletdb" ) const ( diff --git a/waddrmgr/manager_test.go b/waddrmgr/manager_test.go index 0283641..95413ff 100644 --- a/waddrmgr/manager_test.go +++ b/waddrmgr/manager_test.go @@ -25,9 +25,9 @@ import ( "github.com/btcsuite/btcnet" "github.com/btcsuite/btcutil" + "github.com/btcsuite/btcwallet/waddrmgr" + "github.com/btcsuite/btcwallet/walletdb" "github.com/btcsuite/btcwire" - "github.com/conformal/btcwallet/waddrmgr" - "github.com/conformal/btcwallet/walletdb" ) // newShaHash converts the passed big-endian hex string into a btcwire.ShaHash. diff --git a/waddrmgr/sync.go b/waddrmgr/sync.go index f2ea582..71d65b7 100644 --- a/waddrmgr/sync.go +++ b/waddrmgr/sync.go @@ -19,8 +19,8 @@ package waddrmgr import ( "sync" + "github.com/btcsuite/btcwallet/walletdb" "github.com/btcsuite/btcwire" - "github.com/conformal/btcwallet/walletdb" ) const ( diff --git a/wallet.go b/wallet.go index 081a035..a72902a 100644 --- a/wallet.go +++ b/wallet.go @@ -30,10 +30,10 @@ import ( "github.com/btcsuite/btcjson" "github.com/btcsuite/btcnet" "github.com/btcsuite/btcutil" + "github.com/btcsuite/btcwallet/chain" + "github.com/btcsuite/btcwallet/keystore" + "github.com/btcsuite/btcwallet/txstore" "github.com/btcsuite/btcwire" - "github.com/conformal/btcwallet/chain" - "github.com/conformal/btcwallet/keystore" - "github.com/conformal/btcwallet/txstore" ) var ( diff --git a/walletdb/README.md b/walletdb/README.md index ca2a78f..9ca5361 100644 --- a/walletdb/README.md +++ b/walletdb/README.md @@ -1,8 +1,8 @@ walletdb ======== -[![Build Status](https://travis-ci.org/conformal/btcwallet.png?branch=master)] -(https://travis-ci.org/conformal/btcwallet) +[![Build Status](https://travis-ci.org/btcsuite/btcwallet.png?branch=master)] +(https://travis-ci.org/btcsuite/btcwallet) Package walletdb provides a namespaced database interface for btcwallet. @@ -43,27 +43,27 @@ boltdb project at https://github.com/boltdb/bolt by Ben B. Johnson. ## Documentation -[![GoDoc](https://godoc.org/github.com/conformal/btcwallet/walletdb?status.png)] -(http://godoc.org/github.com/conformal/btcwallet/walletdb) +[![GoDoc](https://godoc.org/github.com/btcsuite/btcwallet/walletdb?status.png)] +(http://godoc.org/github.com/btcsuite/btcwallet/walletdb) Full `go doc` style documentation for the project can be viewed online without installing this package by using the GoDoc site here: -http://godoc.org/github.com/conformal/btcwallet/walletdb +http://godoc.org/github.com/btcsuite/btcwallet/walletdb You can also view the documentation locally once the package is installed with the `godoc` tool by running `godoc -http=":6060"` and pointing your browser to -http://localhost:6060/pkg/github.com/conformal/btcwallet/walletdb +http://localhost:6060/pkg/github.com/btcsuite/btcwallet/walletdb ## Installation ```bash -$ go get github.com/conformal/btcwallet/walletdb +$ go get github.com/btcsuite/btcwallet/walletdb ``` ## Examples * [Basic Usage Example] - (http://godoc.org/github.com/conformal/btcwallet/walletdb#example-package--BasicUsage) + (http://godoc.org/github.com/btcsuite/btcwallet/walletdb#example-package--BasicUsage) Demonstrates creating a new database, getting a namespace from it, and using a managed read-write transaction against the namespace to store and retrieve data. diff --git a/walletdb/bdb/README.md b/walletdb/bdb/README.md index 4489e57..5a99ae7 100644 --- a/walletdb/bdb/README.md +++ b/walletdb/bdb/README.md @@ -1,8 +1,8 @@ bdb === -[![Build Status](https://travis-ci.org/conformal/btcwallet.png?branch=master)] -(https://travis-ci.org/conformal/btcwallet) +[![Build Status](https://travis-ci.org/btcsuite/btcwallet.png?branch=master)] +(https://travis-ci.org/btcsuite/btcwallet) Package bdb implements an driver for walletdb that uses boltdb for the backing datastore. Package bdb is licensed under the copyfree ISC license. @@ -29,16 +29,16 @@ if err != nil { ## Documentation -[![GoDoc](https://godoc.org/github.com/conformal/btcwallet/walletdb/bdb?status.png)] -(http://godoc.org/github.com/conformal/btcwallet/walletdb/bdb) +[![GoDoc](https://godoc.org/github.com/btcsuite/btcwallet/walletdb/bdb?status.png)] +(http://godoc.org/github.com/btcsuite/btcwallet/walletdb/bdb) Full `go doc` style documentation for the project can be viewed online without installing this package by using the GoDoc site here: -http://godoc.org/github.com/conformal/btcwallet/walletdb/bdb +http://godoc.org/github.com/btcsuite/btcwallet/walletdb/bdb You can also view the documentation locally once the package is installed with the `godoc` tool by running `godoc -http=":6060"` and pointing your browser to -http://localhost:6060/pkg/github.com/conformal/btcwallet/walletdb/bdb +http://localhost:6060/pkg/github.com/btcsuite/btcwallet/walletdb/bdb ## License diff --git a/walletdb/bdb/db.go b/walletdb/bdb/db.go index dcd8c98..fde4aa6 100644 --- a/walletdb/bdb/db.go +++ b/walletdb/bdb/db.go @@ -21,7 +21,7 @@ import ( "os" "github.com/btcsuite/bolt" - "github.com/conformal/btcwallet/walletdb" + "github.com/btcsuite/btcwallet/walletdb" ) // convertErr converts some bolt errors to the equivalent walletdb error. diff --git a/walletdb/bdb/driver.go b/walletdb/bdb/driver.go index 41ab6e8..15bbe4c 100644 --- a/walletdb/bdb/driver.go +++ b/walletdb/bdb/driver.go @@ -19,7 +19,7 @@ package bdb import ( "fmt" - "github.com/conformal/btcwallet/walletdb" + "github.com/btcsuite/btcwallet/walletdb" ) const ( diff --git a/walletdb/bdb/driver_test.go b/walletdb/bdb/driver_test.go index 26076de..138e8f0 100644 --- a/walletdb/bdb/driver_test.go +++ b/walletdb/bdb/driver_test.go @@ -22,8 +22,8 @@ import ( "reflect" "testing" - "github.com/conformal/btcwallet/walletdb" - _ "github.com/conformal/btcwallet/walletdb/bdb" + "github.com/btcsuite/btcwallet/walletdb" + _ "github.com/btcsuite/btcwallet/walletdb/bdb" ) // dbType is the database type name for this driver. diff --git a/walletdb/bdb/interface_test.go b/walletdb/bdb/interface_test.go index 5ad2aa7..edc5316 100644 --- a/walletdb/bdb/interface_test.go +++ b/walletdb/bdb/interface_test.go @@ -29,7 +29,7 @@ import ( "reflect" "testing" - "github.com/conformal/btcwallet/walletdb" + "github.com/btcsuite/btcwallet/walletdb" ) // subTestFailError is used to signal that a sub test returned false. diff --git a/walletdb/db_test.go b/walletdb/db_test.go index a545f6f..8593a10 100644 --- a/walletdb/db_test.go +++ b/walletdb/db_test.go @@ -21,8 +21,8 @@ import ( "os" "testing" - "github.com/conformal/btcwallet/walletdb" - _ "github.com/conformal/btcwallet/walletdb/bdb" + "github.com/btcsuite/btcwallet/walletdb" + _ "github.com/btcsuite/btcwallet/walletdb/bdb" ) var ( diff --git a/walletdb/example_test.go b/walletdb/example_test.go index 3b5ed53..3db22cf 100644 --- a/walletdb/example_test.go +++ b/walletdb/example_test.go @@ -22,8 +22,8 @@ import ( "os" "path/filepath" - "github.com/conformal/btcwallet/walletdb" - _ "github.com/conformal/btcwallet/walletdb/bdb" + "github.com/btcsuite/btcwallet/walletdb" + _ "github.com/btcsuite/btcwallet/walletdb/bdb" ) // This example demonstrates creating a new database. @@ -31,8 +31,8 @@ func ExampleCreate() { // This example assumes the bdb (bolt db) driver is imported. // // import ( - // "github.com/conformal/btcwallet/walletdb" - // _ "github.com/conformal/btcwallet/walletdb/bdb" + // "github.com/btcsuite/btcwallet/walletdb" + // _ "github.com/btcsuite/btcwallet/walletdb/bdb" // ) // Create a database and schedule it to be closed and removed on exit. @@ -108,8 +108,8 @@ func Example_basicUsage() { // This example assumes the bdb (bolt db) driver is imported. // // import ( - // "github.com/conformal/btcwallet/walletdb" - // _ "github.com/conformal/btcwallet/walletdb/bdb" + // "github.com/btcsuite/btcwallet/walletdb" + // _ "github.com/btcsuite/btcwallet/walletdb/bdb" // ) // Create a database and schedule it to be closed and removed on exit. diff --git a/walletdb/interface_test.go b/walletdb/interface_test.go index a74aaff..7e6c9b4 100644 --- a/walletdb/interface_test.go +++ b/walletdb/interface_test.go @@ -29,7 +29,7 @@ import ( "reflect" "testing" - "github.com/conformal/btcwallet/walletdb" + "github.com/btcsuite/btcwallet/walletdb" ) // subTestFailError is used to signal that a sub test returned false.