-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update lnd, btcd and fix mess with return values.
reported in https://njump.me/nevent1qqsq8rgpcpan9yedcctdqlzsxvmr0uv2jac4zk5e2hrn9994xc2y8tspzpmhxue69uhkztnwdaejumr0dshsz9mhwden5te0vf5hgcm0d9hx2u3wwdhkx6tpdshsz8thwden5te0vfhhxarj9e3xjarrda5kuarcda4k7tnrdakj7w0d4h2 apparently btcec/v2's SignCompact() jumped from returning 2 values on v2.3.3 to returning just 1 in v2.3.4, go mod didn't care and automatically updated to v2.3.4 here (and everywhere) and then nothing would build. this commit forces a dependency on v2.3.3.
- Loading branch information
Showing
3 changed files
with
649 additions
and
186 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
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,51 +1,113 @@ | ||
module github.com/nbd-wtf/ln-decodepay | ||
|
||
go 1.18 | ||
go 1.23.0 | ||
|
||
require ( | ||
github.com/btcsuite/btcd v0.23.5-0.20230905170901-80f5a0ffdf36 | ||
github.com/lightningnetwork/lnd v0.17.3-beta | ||
github.com/stretchr/testify v1.8.4 | ||
github.com/tidwall/gjson v1.6.1 | ||
github.com/btcsuite/btcd v0.24.2 | ||
github.com/btcsuite/btcd/btcec/v2 v2.3.3 | ||
github.com/lightningnetwork/lnd v0.18.3-beta.rc3 | ||
github.com/stretchr/testify v1.9.0 | ||
github.com/tidwall/gjson v1.18.0 | ||
) | ||
|
||
require ( | ||
dario.cat/mergo v1.0.1 // indirect | ||
github.com/aead/chacha20 v0.0.0-20180709150244-8b13a72661da // indirect | ||
github.com/aead/siphash v1.0.1 // indirect | ||
github.com/btcsuite/btcd/btcec/v2 v2.3.2 // indirect | ||
github.com/btcsuite/btcd/btcutil v1.1.4-0.20230904040416-d4f519f5dc05 // indirect | ||
github.com/btcsuite/btcd/btcutil/psbt v1.1.8 // indirect | ||
github.com/btcsuite/btcd/chaincfg/chainhash v1.0.2 // indirect | ||
github.com/btcsuite/btcd/btcutil v1.1.6 // indirect | ||
github.com/btcsuite/btcd/btcutil/psbt v1.1.9 // indirect | ||
github.com/btcsuite/btcd/chaincfg/chainhash v1.1.0 // indirect | ||
github.com/btcsuite/btclog v0.0.0-20170628155309-84c8d2346e9f // indirect | ||
github.com/btcsuite/btcwallet v0.16.10-0.20231129183218-5df09dd43358 // indirect | ||
github.com/btcsuite/btcwallet/wallet/txauthor v1.3.2 // indirect | ||
github.com/btcsuite/btcwallet/wallet/txrules v1.2.0 // indirect | ||
github.com/btcsuite/btcwallet/wallet/txsizes v1.2.3 // indirect | ||
github.com/btcsuite/btcwallet/walletdb v1.4.0 // indirect | ||
github.com/btcsuite/btcwallet/wtxmgr v1.5.0 // indirect | ||
github.com/btcsuite/btcwallet v0.16.10-0.20240809133323-7d3434c65ae2 // indirect | ||
github.com/btcsuite/btcwallet/wallet/txauthor v1.3.5 // indirect | ||
github.com/btcsuite/btcwallet/wallet/txrules v1.2.2 // indirect | ||
github.com/btcsuite/btcwallet/wallet/txsizes v1.2.5 // indirect | ||
github.com/btcsuite/btcwallet/walletdb v1.4.4 // indirect | ||
github.com/btcsuite/btcwallet/wtxmgr v1.5.4 // indirect | ||
github.com/btcsuite/go-socks v0.0.0-20170105172521-4720035b7bfd // indirect | ||
github.com/btcsuite/websocket v0.0.0-20150119174127-31079b680792 // indirect | ||
github.com/btcsuite/winsvc v1.0.0 // indirect | ||
github.com/coreos/go-semver v0.3.1 // indirect | ||
github.com/coreos/go-systemd/v22 v22.5.0 // 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/decred/dcrd/crypto/blake256 v1.1.0 // indirect | ||
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.3.0 // indirect | ||
github.com/decred/dcrd/lru v1.1.3 // indirect | ||
github.com/docker/cli v27.3.1+incompatible // indirect | ||
github.com/docker/docker v27.3.1+incompatible // indirect | ||
github.com/fergusstrange/embedded-postgres v1.29.0 // indirect | ||
github.com/go-errors/errors v1.5.1 // indirect | ||
github.com/go-viper/mapstructure/v2 v2.2.1 // indirect | ||
github.com/golang-jwt/jwt/v4 v4.5.0 // indirect | ||
github.com/golang-migrate/migrate/v4 v4.18.1 // indirect | ||
github.com/golang/snappy v0.0.4 // indirect | ||
github.com/google/btree v1.1.3 // indirect | ||
github.com/gorilla/websocket v1.5.3 // indirect | ||
github.com/grpc-ecosystem/go-grpc-middleware v1.4.0 // indirect | ||
github.com/jackc/pgtype v1.14.3 // indirect | ||
github.com/jackc/pgx/v4 v4.18.3 // indirect | ||
github.com/jackc/pgx/v5 v5.7.1 // indirect | ||
github.com/jessevdk/go-flags v1.6.1 // indirect | ||
github.com/jonboulle/clockwork v0.4.0 // indirect | ||
github.com/jrick/logrotate v1.1.2 // indirect | ||
github.com/kkdai/bstream v1.0.0 // indirect | ||
github.com/klauspost/compress v1.17.10 // indirect | ||
github.com/klauspost/cpuid/v2 v2.2.8 // indirect | ||
github.com/kr/pretty v0.3.1 // indirect | ||
github.com/lightninglabs/gozmq v0.0.0-20191113021534-d20a764486bf // indirect | ||
github.com/lightninglabs/neutrino v0.16.0 // indirect | ||
github.com/lightninglabs/neutrino/cache v1.1.1 // indirect | ||
github.com/lightninglabs/neutrino v0.16.1-0.20240425105051-602843d34ffd // indirect | ||
github.com/lightninglabs/neutrino/cache v1.1.2 // indirect | ||
github.com/lightningnetwork/lightning-onion v1.2.1-0.20240712235311-98bd56499dfb // indirect | ||
github.com/lightningnetwork/lnd/clock v1.1.1 // indirect | ||
github.com/lightningnetwork/lnd/fn v1.2.1 // indirect | ||
github.com/lightningnetwork/lnd/queue v1.1.1 // indirect | ||
github.com/lightningnetwork/lnd/ticker v1.1.1 // indirect | ||
github.com/lightningnetwork/lnd/tlv v1.1.1 // indirect | ||
github.com/lightningnetwork/lnd/tor v1.1.2 // indirect | ||
github.com/miekg/dns v1.1.43 // indirect | ||
github.com/lightningnetwork/lnd/tlv v1.2.6 // indirect | ||
github.com/lightningnetwork/lnd/tor v1.1.3 // indirect | ||
github.com/ltcsuite/ltcd v0.23.5 // indirect | ||
github.com/miekg/dns v1.1.62 // indirect | ||
github.com/onsi/ginkgo v1.16.4 // indirect | ||
github.com/opencontainers/runc v1.1.14 // indirect | ||
github.com/ory/dockertest/v3 v3.11.0 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/tidwall/match v1.0.1 // indirect | ||
github.com/tidwall/pretty v1.0.2 // indirect | ||
golang.org/x/crypto v0.7.0 // indirect | ||
golang.org/x/exp v0.0.0-20230315142452-642cacee5cc0 // indirect | ||
golang.org/x/net v0.10.0 // indirect | ||
golang.org/x/sys v0.8.0 // indirect | ||
golang.org/x/term v0.8.0 // indirect | ||
github.com/prometheus/client_golang v1.20.4 // indirect | ||
github.com/prometheus/common v0.60.0 // indirect | ||
github.com/rogpeppe/go-internal v1.12.0 // indirect | ||
github.com/stretchr/objx v0.5.2 // indirect | ||
github.com/syndtr/goleveldb v1.0.1-0.20210819022825-2ae1ddf74ef7 // indirect | ||
github.com/tidwall/match v1.1.1 // indirect | ||
github.com/tidwall/pretty v1.2.1 // indirect | ||
github.com/tmc/grpc-websocket-proxy v0.0.0-20220101234140-673ab2c3ae75 // indirect | ||
github.com/xiang90/probing v0.0.0-20221125231312-a49e3df8f510 // indirect | ||
go.etcd.io/etcd/api/v3 v3.5.16 // indirect | ||
go.etcd.io/etcd/client/pkg/v3 v3.5.16 // indirect | ||
go.etcd.io/etcd/client/v3 v3.5.16 // indirect | ||
go.etcd.io/etcd/server/v3 v3.5.16 // indirect | ||
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.55.0 // indirect | ||
go.opentelemetry.io/otel v1.30.0 // indirect | ||
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.30.0 // indirect | ||
go.opentelemetry.io/otel/sdk v1.30.0 // indirect | ||
go.uber.org/atomic v1.11.0 // indirect | ||
go.uber.org/multierr v1.11.0 // indirect | ||
go.uber.org/zap v1.27.0 // indirect | ||
golang.org/x/crypto v0.27.0 // indirect | ||
golang.org/x/exp v0.0.0-20240909161429-701f63a606c0 // indirect | ||
golang.org/x/mod v0.21.0 // indirect | ||
golang.org/x/net v0.29.0 // indirect | ||
golang.org/x/sync v0.8.0 // indirect | ||
golang.org/x/sys v0.25.0 // indirect | ||
golang.org/x/term v0.24.0 // indirect | ||
golang.org/x/time v0.6.0 // indirect | ||
golang.org/x/tools v0.25.0 // indirect | ||
google.golang.org/genproto v0.0.0-20240930140551-af27646dc61f // indirect | ||
google.golang.org/genproto/googleapis/api v0.0.0-20240930140551-af27646dc61f // indirect | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20240930140551-af27646dc61f // indirect | ||
google.golang.org/grpc v1.67.1 // indirect | ||
gopkg.in/natefinch/lumberjack.v2 v2.2.1 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
lukechampine.com/blake3 v1.3.0 // indirect | ||
modernc.org/gc/v3 v3.0.0-20240801135723-a856999a2e4a // indirect | ||
modernc.org/libc v1.61.0 // indirect | ||
modernc.org/sqlite v1.33.1 // indirect | ||
sigs.k8s.io/yaml v1.4.0 // indirect | ||
) |
Oops, something went wrong.