-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
go: update lnd modules that fix dependency hell.
- Loading branch information
Showing
3 changed files
with
167 additions
and
80 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,43 @@ | ||
module github.com/jb55/lnsocket/go | ||
|
||
go 1.17 | ||
|
||
require ( | ||
github.com/btcsuite/btcd v0.22.0-beta.0.20211005184431-e3449998be39 | ||
github.com/lightningnetwork/lnd v0.14.1-beta | ||
github.com/btcsuite/btcd/btcec/v2 v2.2.0 | ||
github.com/lightningnetwork/lnd v0.15.0-beta | ||
github.com/lightningnetwork/lnd/tor v1.0.1 | ||
) | ||
|
||
require ( | ||
github.com/aead/siphash v1.0.1 // indirect | ||
github.com/btcsuite/btcd v0.23.1 // indirect | ||
github.com/btcsuite/btcd/btcutil v1.1.1 // indirect | ||
github.com/btcsuite/btcd/btcutil/psbt v1.1.4 // indirect | ||
github.com/btcsuite/btcd/chaincfg/chainhash v1.0.1 // indirect | ||
github.com/btcsuite/btclog v0.0.0-20170628155309-84c8d2346e9f // indirect | ||
github.com/btcsuite/btcutil v1.0.3-0.20210527170813-e2ba6805a890 // indirect | ||
github.com/btcsuite/btcutil/psbt v1.0.3-0.20210527170813-e2ba6805a890 // indirect | ||
github.com/btcsuite/btcwallet v0.13.0 // indirect | ||
github.com/btcsuite/btcwallet/wallet/txauthor v1.1.0 // indirect | ||
github.com/btcsuite/btcwallet/wallet/txrules v1.1.0 // indirect | ||
github.com/btcsuite/btcwallet v0.15.1 // indirect | ||
github.com/btcsuite/btcwallet/wallet/txauthor v1.2.3 // indirect | ||
github.com/btcsuite/btcwallet/wallet/txrules v1.2.0 // indirect | ||
github.com/btcsuite/btcwallet/wallet/txsizes v1.1.0 // indirect | ||
github.com/btcsuite/btcwallet/walletdb v1.3.6-0.20210803004036-eebed51155ec // indirect | ||
github.com/btcsuite/btcwallet/wtxmgr v1.3.1-0.20210822222949-9b5a201c344c // indirect | ||
github.com/btcsuite/btcwallet/walletdb v1.4.0 // indirect | ||
github.com/btcsuite/btcwallet/wtxmgr v1.5.0 // indirect | ||
github.com/btcsuite/go-socks v0.0.0-20170105172521-4720035b7bfd // indirect | ||
github.com/btcsuite/websocket v0.0.0-20150119174127-31079b680792 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // 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.0.0 // indirect | ||
github.com/go-errors/errors v1.0.1 // indirect | ||
github.com/kkdai/bstream v1.0.0 // indirect | ||
github.com/lightninglabs/gozmq v0.0.0-20191113021534-d20a764486bf // indirect | ||
github.com/lightninglabs/neutrino v0.13.0 // indirect | ||
github.com/lightninglabs/neutrino v0.14.2 // indirect | ||
github.com/lightningnetwork/lnd/clock v1.1.0 // indirect | ||
github.com/lightningnetwork/lnd/queue v1.1.0 // indirect | ||
github.com/lightningnetwork/lnd/ticker v1.1.0 // indirect | ||
github.com/lightningnetwork/lnd/tlv v1.0.3 // indirect | ||
github.com/miekg/dns v1.1.43 // indirect | ||
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519 // indirect | ||
golang.org/x/net v0.0.0-20210913180222-943fd674d43e // indirect | ||
golang.org/x/sys v0.0.0-20210915083310-ed5796bab164 // indirect | ||
golang.org/x/net v0.0.0-20211015210444-4f30a5c0130f // indirect | ||
golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a // indirect | ||
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1 // indirect | ||
) | ||
|
||
go 1.17 |
Oops, something went wrong.