forked from lightninglabs/neutrino
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathgo.mod
45 lines (39 loc) · 1.72 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
39
40
41
42
43
44
45
module github.com/ltcsuite/neutrino
require (
github.com/btcsuite/btclog v0.0.0-20170628155309-84c8d2346e9f
github.com/davecgh/go-spew v1.1.1
github.com/ltcsuite/lnd/queue v1.1.0
github.com/ltcsuite/ltcd v0.23.5
github.com/ltcsuite/ltcd/btcec/v2 v2.3.2
github.com/ltcsuite/ltcd/chaincfg/chainhash v1.0.2
github.com/ltcsuite/ltcd/ltcutil v1.1.3
github.com/ltcsuite/ltcwallet/wallet/txauthor v1.2.3
github.com/ltcsuite/ltcwallet/wallet/txrules v1.2.0 // indirect
github.com/ltcsuite/ltcwallet/wallet/txsizes v1.2.3 // indirect
github.com/ltcsuite/ltcwallet/walletdb v1.3.5
github.com/ltcsuite/ltcwallet/wtxmgr v1.5.0
github.com/ltcsuite/neutrino/cache v1.1.0
github.com/stretchr/testify v1.8.2
)
require (
github.com/aead/siphash v1.0.1 // indirect
github.com/btcsuite/go-socks v0.0.0-20170105172521-4720035b7bfd // indirect
github.com/btcsuite/websocket v0.0.0-20150119174127-31079b680792 // indirect
github.com/decred/dcrd/crypto/blake256 v1.0.0 // indirect
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.0.1 // indirect
github.com/decred/dcrd/lru v1.1.1 // indirect
github.com/kkdai/bstream v1.0.0 // indirect
github.com/klauspost/cpuid/v2 v2.0.9 // indirect
github.com/ltcsuite/lnd/clock v1.1.0 // indirect
github.com/ltcsuite/lnd/ticker v1.1.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
go.etcd.io/bbolt v1.3.6 // indirect
golang.org/x/crypto v0.7.0 // indirect
golang.org/x/sys v0.8.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
lukechampine.com/blake3 v1.2.1 // indirect
)
go 1.18
replace github.com/ltcsuite/neutrino/cache => ./cache
replace github.com/ltcsuite/ltcwallet/wallet/txauthor => ../ltcwallet/wallet/txauthor
replace github.com/ltcsuite/ltcwallet/wallet/txsizes => ../ltcwallet/wallet/txsizes