2018-11-30 03:42:29 +01:00
|
|
|
module github.com/btcsuite/btcwallet
|
|
|
|
|
|
|
|
require (
|
2021-08-03 22:40:17 +02:00
|
|
|
github.com/btcsuite/btcd v0.22.0-beta.0.20210803133449-f5a1fb9965e4
|
2018-11-30 03:42:29 +01:00
|
|
|
github.com/btcsuite/btclog v0.0.0-20170628155309-84c8d2346e9f
|
2021-02-17 02:01:02 +01:00
|
|
|
github.com/btcsuite/btcutil v1.0.3-0.20201208143702-a53e38424cce
|
|
|
|
github.com/btcsuite/btcutil/psbt v1.0.3-0.20201208143702-a53e38424cce
|
2021-05-31 09:16:48 +02:00
|
|
|
github.com/btcsuite/btcwallet/wallet/txauthor v1.0.1-0.20210329233242-e0607006dce6
|
2019-09-06 02:34:09 +02:00
|
|
|
github.com/btcsuite/btcwallet/wallet/txrules v1.0.0
|
2021-05-31 09:16:48 +02:00
|
|
|
github.com/btcsuite/btcwallet/wallet/txsizes v1.0.1-0.20210519225359-6ab9b615576f
|
2021-05-14 01:35:44 +02:00
|
|
|
github.com/btcsuite/btcwallet/walletdb v1.3.5
|
|
|
|
github.com/btcsuite/btcwallet/wtxmgr v1.3.0
|
2018-11-30 03:42:29 +01:00
|
|
|
github.com/btcsuite/websocket v0.0.0-20150119174127-31079b680792
|
2018-11-30 08:08:22 +01: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-13 04:12:34 +01:00
|
|
|
github.com/jessevdk/go-flags v1.4.0
|
2018-11-30 03:42:29 +01:00
|
|
|
github.com/jrick/logrotate v1.0.0
|
2019-09-05 07:17:33 +02:00
|
|
|
github.com/kkdai/bstream v0.0.0-20181106074824-b3251f7901ec // indirect
|
2019-11-08 22:21:12 +01:00
|
|
|
github.com/lightninglabs/gozmq v0.0.0-20191113021534-d20a764486bf
|
2021-05-14 01:35:44 +02:00
|
|
|
github.com/lightninglabs/neutrino v0.12.1
|
2021-03-26 01:29:27 +01:00
|
|
|
github.com/lightningnetwork/lnd/ticker v1.0.0
|
2021-02-17 02:03:37 +01:00
|
|
|
github.com/stretchr/testify v1.5.1
|
2021-03-26 01:29:27 +01: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-06 03:31:03 +02:00
|
|
|
google.golang.org/genproto v0.0.0-20190201180003-4b09977fb922 // indirect
|
2019-02-13 04:12:34 +01:00
|
|
|
google.golang.org/grpc v1.18.0
|
2018-11-30 03:42:29 +01:00
|
|
|
)
|
2019-08-28 00:23:26 +02:00
|
|
|
|
2019-09-05 07:17:33 +02:00
|
|
|
replace github.com/btcsuite/btcwallet/walletdb => ./walletdb
|
2019-09-06 02:34:09 +02: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-06 03:31:03 +02: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-02 00:36:58 +02:00
|
|
|
go 1.16
|