Skip to content

Commit 73ea90a

Browse files
authored
Merge pull request #657 from lightninglabs/2023-10-taproot-assets-v0_3_0
version+README: update LiT, Taproot assets, Loop & LNC versions
2 parents 775a816 + 72cee97 commit 73ea90a

File tree

6 files changed

+67
-55
lines changed

6 files changed

+67
-55
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ versioning](#daemon-versions-packaged-with-lit).
7676

7777
| LiT | LND |
7878
|-------------------|--------------|
79+
| **v0.12.0-alpha** | v0.16.0-beta |
7980
| **v0.11.0-alpha** | v0.16.0-beta |
8081
| **v0.10.5-alpha** | v0.16.0-beta |
8182
| **v0.10.4-alpha** | v0.16.0-beta |
@@ -147,6 +148,7 @@ The following table shows the supported combinations:
147148

148149
| LiT | LND | Loop | Faraday | Pool | Taproot Assets |
149150
|-------------------|--------------|--------------|---------------|--------------|----------------|
151+
| **v0.12.0-alpha** | v0.17.0-beta | v0.26.4-beta | v0.2.11-alpha | v0.6.4-beta | v0.3.0-alpha |
150152
| **v0.11.0-alpha** | v0.17.0-beta | v0.26.3-beta | v0.2.11-alpha | v0.6.4-beta | v0.2.3-alpha |
151153
| **v0.10.5-alpha** | v0.16.4-beta | v0.26.2-beta | v0.2.11-alpha | v0.6.4-beta | v0.2.3-alpha |
152154
| **v0.10.4-alpha** | v0.16.4-beta | v0.25.2-beta | v0.2.11-alpha | v0.6.4-beta | v0.2.3-alpha |

config.go

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -362,19 +362,6 @@ func loadAndValidateConfig(interceptor signal.Interceptor) (*Config, error) {
362362
return nil, err
363363
}
364364

365-
// TODO(positiveblue): Taproot Assets do not support mainnet yet so we
366-
// want the subserver disabled for that specific net.
367-
// We cannot distinguish if the user manually set the flag
368-
// `taproot-assets-mode` or we are using the default value (integrated)
369-
// so we will disable the server in both cases.
370-
if cfg.Network == "mainnet" {
371-
log.Infof("LiT is running in mainnet, the taproot assets " +
372-
"subserver do not support the `mainnet` network yet, " +
373-
"disabling taproot assets subserver")
374-
375-
cfg.TaprootAssetsMode = ModeDisable
376-
}
377-
378365
// Translate the more user friendly string modes into the more developer
379366
// friendly internal bool variables now.
380367
cfg.lndRemote = cfg.LndMode == ModeRemote

go.mod

Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ require (
1212
github.com/improbable-eng/grpc-web v0.12.0
1313
github.com/jessevdk/go-flags v1.4.0
1414
github.com/lightninglabs/faraday v0.2.11-alpha.0.20231003174141-945b7188032f
15-
github.com/lightninglabs/lightning-node-connect v0.2.6-alpha
15+
github.com/lightninglabs/lightning-node-connect v0.2.7-alpha
1616
github.com/lightninglabs/lightning-terminal/autopilotserverrpc v0.0.1
1717
github.com/lightninglabs/lndclient v0.17.0-1
18-
github.com/lightninglabs/loop v0.26.3-beta.0.20231003175035-71c3e651ff4d
18+
github.com/lightninglabs/loop v0.26.4-beta
1919
github.com/lightninglabs/loop/swapserverrpc v1.0.5
2020
github.com/lightninglabs/pool v0.6.4-beta.0.20231003174306-80d8854a0c4b
2121
github.com/lightninglabs/pool/auctioneerrpc v1.1.1
22-
github.com/lightninglabs/taproot-assets v0.2.4-0.20231003174254-dc19aad3ae77
22+
github.com/lightninglabs/taproot-assets v0.3.0
2323
github.com/lightningnetwork/lnd v0.17.0-beta
2424
github.com/lightningnetwork/lnd/cert v1.2.2
2525
github.com/lightningnetwork/lnd/kvdb v1.4.4
@@ -78,7 +78,7 @@ require (
7878
github.com/docker/go-connections v0.4.0 // indirect
7979
github.com/docker/go-units v0.5.0 // indirect
8080
github.com/dsnet/compress v0.0.1 // indirect
81-
github.com/dustin/go-humanize v1.0.0 // indirect
81+
github.com/dustin/go-humanize v1.0.1 // indirect
8282
github.com/fergusstrange/embedded-postgres v1.10.0 // indirect
8383
github.com/go-logr/logr v1.2.2 // indirect
8484
github.com/go-logr/stdr v1.2.2 // indirect
@@ -92,7 +92,9 @@ require (
9292
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect
9393
github.com/google/uuid v1.3.0 // indirect
9494
github.com/gorilla/websocket v1.4.2 // indirect
95-
github.com/grpc-ecosystem/go-grpc-middleware v1.3.0 // indirect
95+
github.com/grpc-ecosystem/go-grpc-middleware v1.4.0 // indirect
96+
github.com/grpc-ecosystem/go-grpc-middleware/providers/prometheus v1.0.0-rc.0 // indirect
97+
github.com/grpc-ecosystem/go-grpc-middleware/v2 v2.0.0-rc.3 // indirect
9698
github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0 // indirect
9799
github.com/grpc-ecosystem/grpc-gateway v1.16.0 // indirect
98100
github.com/hashicorp/errwrap v1.1.0 // indirect
@@ -151,10 +153,10 @@ require (
151153
github.com/pierrec/lz4/v4 v4.1.8 // indirect
152154
github.com/pkg/errors v0.9.1 // indirect
153155
github.com/pmezard/go-difflib v1.0.0 // indirect
154-
github.com/prometheus/client_golang v1.11.1 // indirect
155-
github.com/prometheus/client_model v0.2.0 // indirect
156-
github.com/prometheus/common v0.30.0 // indirect
157-
github.com/prometheus/procfs v0.7.3 // indirect
156+
github.com/prometheus/client_golang v1.14.0 // indirect
157+
github.com/prometheus/client_model v0.3.0 // indirect
158+
github.com/prometheus/common v0.37.0 // indirect
159+
github.com/prometheus/procfs v0.8.0 // indirect
158160
github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect
159161
github.com/rivo/uniseg v0.2.0 // indirect
160162
github.com/rogpeppe/fastuuid v1.2.0 // indirect
@@ -210,11 +212,11 @@ require (
210212
lukechampine.com/uint128 v1.2.0 // indirect
211213
modernc.org/cc/v3 v3.40.0 // indirect
212214
modernc.org/ccgo/v3 v3.16.13 // indirect
213-
modernc.org/libc v1.22.3 // indirect
215+
modernc.org/libc v1.24.1 // indirect
214216
modernc.org/mathutil v1.5.0 // indirect
215-
modernc.org/memory v1.5.0 // indirect
217+
modernc.org/memory v1.6.0 // indirect
216218
modernc.org/opt v0.1.3 // indirect
217-
modernc.org/sqlite v1.21.0 // indirect
219+
modernc.org/sqlite v1.25.0 // indirect
218220
modernc.org/strutil v1.1.3 // indirect
219221
modernc.org/token v1.0.1 // indirect
220222
nhooyr.io/websocket v1.8.7 // indirect

0 commit comments

Comments
 (0)