2018-11-29 18:42:29 -08:00
|
|
|
module github.com/btcsuite/btcwallet
|
|
|
|
|
|
|
|
require (
|
2021-08-03 16:40:17 -04:00
|
|
|
github.com/btcsuite/btcd v0.22.0-beta.0.20210803133449-f5a1fb9965e4
|
2018-11-29 18:42:29 -08:00
|
|
|
github.com/btcsuite/btclog v0.0.0-20170628155309-84c8d2346e9f
|
2021-12-02 15:10:20 +01:00
|
|
|
github.com/btcsuite/btcutil v1.0.3-0.20210929233259-9cdf59f60c51
|
|
|
|
github.com/btcsuite/btcutil/psbt v1.0.3-0.20210929233259-9cdf59f60c51
|
2021-09-23 14:35:37 -07:00
|
|
|
github.com/btcsuite/btcwallet/wallet/txauthor v1.1.0
|
|
|
|
github.com/btcsuite/btcwallet/wallet/txrules v1.1.0
|
|
|
|
github.com/btcsuite/btcwallet/wallet/txsizes v1.1.0
|
2021-05-13 16:35:44 -07:00
|
|
|
github.com/btcsuite/btcwallet/walletdb v1.3.5
|
|
|
|
github.com/btcsuite/btcwallet/wtxmgr v1.3.0
|
2018-11-29 18:42:29 -08:00
|
|
|
github.com/btcsuite/websocket v0.0.0-20150119174127-31079b680792
|
2018-11-29 23:08:22 -08:00
|
|
|
github.com/davecgh/go-spew v1.1.1
|
2021-03-04 16:05:46 +01:00
|
|
|
github.com/golang/protobuf v1.4.2
|
2019-02-12 19:12:34 -08:00
|
|
|
github.com/jessevdk/go-flags v1.4.0
|
2018-11-29 18:42:29 -08:00
|
|
|
github.com/jrick/logrotate v1.0.0
|
2019-09-04 22:17:33 -07:00
|
|
|
github.com/kkdai/bstream v0.0.0-20181106074824-b3251f7901ec // indirect
|
2019-11-08 13:21:12 -08:00
|
|
|
github.com/lightninglabs/gozmq v0.0.0-20191113021534-d20a764486bf
|
2021-05-13 16:35:44 -07:00
|
|
|
github.com/lightninglabs/neutrino v0.12.1
|
2021-03-25 17:29:27 -07:00
|
|
|
github.com/lightningnetwork/lnd/ticker v1.0.0
|
2021-02-16 17:03:37 -08:00
|
|
|
github.com/stretchr/testify v1.5.1
|
2021-03-25 17:29:27 -07:00
|
|
|
golang.org/x/crypto v0.0.0-20200510223506-06a226fb4e37
|
2021-03-04 16:05:46 +01:00
|
|
|
golang.org/x/net v0.0.0-20200520004742-59133d7f0dd7
|
2019-09-05 18:31:03 -07:00
|
|
|
google.golang.org/genproto v0.0.0-20190201180003-4b09977fb922 // indirect
|
2019-02-12 19:12:34 -08:00
|
|
|
google.golang.org/grpc v1.18.0
|
2018-11-29 18:42:29 -08:00
|
|
|
)
|
2019-08-27 15:23:26 -07:00
|
|
|
|
2019-09-04 22:17:33 -07:00
|
|
|
replace github.com/btcsuite/btcwallet/walletdb => ./walletdb
|
2019-09-05 17:34:09 -07:00
|
|
|
|
|
|
|
replace github.com/btcsuite/btcwallet/wtxmgr => ./wtxmgr
|
|
|
|
|
|
|
|
replace github.com/btcsuite/btcwallet/wallet/txauthor => ./wallet/txauthor
|
|
|
|
|
|
|
|
replace github.com/btcsuite/btcwallet/wallet/txrules => ./wallet/txrules
|
|
|
|
|
|
|
|
replace github.com/btcsuite/btcwallet/wallet/txsizes => ./wallet/txsizes
|
2019-09-05 18:31:03 -07:00
|
|
|
|
2021-03-04 16:05:46 +01:00
|
|
|
// The old version of ginko that's used in btcd imports an ancient version of
|
|
|
|
// gopkg.in/fsnotify.v1 that isn't go mod compatible. We fix that import error
|
|
|
|
// by replacing ginko (which is only a test library anyway) with a more recent
|
|
|
|
// version.
|
|
|
|
replace github.com/onsi/ginkgo => github.com/onsi/ginkgo v1.14.2
|
|
|
|
|
2021-09-01 15:36:58 -07:00
|
|
|
go 1.16
|