forked from btcsuite/btcwallet
-
Notifications
You must be signed in to change notification settings - Fork 1
/
go.mod
38 lines (30 loc) · 1.51 KB
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
module github.com/btcsuite/btcwallet
require (
github.com/btcsuite/btcd v0.20.1-beta.0.20200513120220-b470eee47728
github.com/btcsuite/btclog v0.0.0-20170628155309-84c8d2346e9f
github.com/btcsuite/btcutil v0.0.0-20190425235716-9e5f4b9a998d
github.com/btcsuite/btcwallet/clock v0.0.0-00010101000000-000000000000 // indirect
github.com/btcsuite/btcwallet/wallet/txauthor v1.0.0
github.com/btcsuite/btcwallet/wallet/txrules v1.0.0
github.com/btcsuite/btcwallet/walletdb v1.3.3
github.com/btcsuite/btcwallet/wtxmgr v1.2.0
github.com/btcsuite/websocket v0.0.0-20150119174127-31079b680792
github.com/davecgh/go-spew v1.1.1
github.com/golang/protobuf v1.2.0
github.com/jessevdk/go-flags v1.4.0
github.com/jrick/logrotate v1.0.0
github.com/kkdai/bstream v0.0.0-20181106074824-b3251f7901ec // indirect
github.com/lightninglabs/gozmq v0.0.0-20191113021534-d20a764486bf
github.com/lightninglabs/neutrino v0.11.0
golang.org/x/crypto v0.0.0-20190211182817-74369b46fc67
golang.org/x/net v0.0.0-20190206173232-65e2d4e15006
google.golang.org/genproto v0.0.0-20190201180003-4b09977fb922 // indirect
google.golang.org/grpc v1.18.0
)
replace github.com/btcsuite/btcwallet/walletdb => ./walletdb
replace github.com/btcsuite/btcwallet/wtxmgr => ./wtxmgr
replace github.com/btcsuite/btcwallet/clock => ./clock
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
go 1.13