Skip to content

Commit b0eef7c

Browse files
committed
Bump rust-lightning revision to 2ff16d70
Update the LSPS2 `BOLT12` integration branch to the current `rust-lightning` head so `ldk-node` picks up the interceptor cleanup fixes and the final non-async router shape. Drop the now-unused `MessageRouter` import while touching the builder wiring. Co-Authored-By: HAL 9000
1 parent 820b43d commit b0eef7c

File tree

2 files changed

+24
-24
lines changed

2 files changed

+24
-24
lines changed

Cargo.toml

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -39,17 +39,17 @@ default = []
3939
#lightning-liquidity = { version = "0.2.0", features = ["std"] }
4040
#lightning-macros = { version = "0.2.0" }
4141

42-
lightning = { git = "https://github.com/tnull/rust-lightning", rev = "8800d488f73f1353e67c2e6364a0ec78546880ad", features = ["std"] }
43-
lightning-types = { git = "https://github.com/tnull/rust-lightning", rev = "8800d488f73f1353e67c2e6364a0ec78546880ad" }
44-
lightning-invoice = { git = "https://github.com/tnull/rust-lightning", rev = "8800d488f73f1353e67c2e6364a0ec78546880ad", features = ["std"] }
45-
lightning-net-tokio = { git = "https://github.com/tnull/rust-lightning", rev = "8800d488f73f1353e67c2e6364a0ec78546880ad" }
46-
lightning-persister = { git = "https://github.com/tnull/rust-lightning", rev = "8800d488f73f1353e67c2e6364a0ec78546880ad", features = ["tokio"] }
47-
lightning-background-processor = { git = "https://github.com/tnull/rust-lightning", rev = "8800d488f73f1353e67c2e6364a0ec78546880ad" }
48-
lightning-rapid-gossip-sync = { git = "https://github.com/tnull/rust-lightning", rev = "8800d488f73f1353e67c2e6364a0ec78546880ad" }
49-
lightning-block-sync = { git = "https://github.com/tnull/rust-lightning", rev = "8800d488f73f1353e67c2e6364a0ec78546880ad", features = ["rest-client", "rpc-client", "tokio"] }
50-
lightning-transaction-sync = { git = "https://github.com/tnull/rust-lightning", rev = "8800d488f73f1353e67c2e6364a0ec78546880ad", features = ["esplora-async-https", "time", "electrum-rustls-ring"] }
51-
lightning-liquidity = { git = "https://github.com/tnull/rust-lightning", rev = "8800d488f73f1353e67c2e6364a0ec78546880ad", features = ["std"] }
52-
lightning-macros = { git = "https://github.com/tnull/rust-lightning", rev = "8800d488f73f1353e67c2e6364a0ec78546880ad" }
42+
lightning = { git = "https://github.com/tnull/rust-lightning", rev = "2ff16d707749123b9f39a503b523c9f3f3404934", features = ["std"] }
43+
lightning-types = { git = "https://github.com/tnull/rust-lightning", rev = "2ff16d707749123b9f39a503b523c9f3f3404934" }
44+
lightning-invoice = { git = "https://github.com/tnull/rust-lightning", rev = "2ff16d707749123b9f39a503b523c9f3f3404934", features = ["std"] }
45+
lightning-net-tokio = { git = "https://github.com/tnull/rust-lightning", rev = "2ff16d707749123b9f39a503b523c9f3f3404934" }
46+
lightning-persister = { git = "https://github.com/tnull/rust-lightning", rev = "2ff16d707749123b9f39a503b523c9f3f3404934", features = ["tokio"] }
47+
lightning-background-processor = { git = "https://github.com/tnull/rust-lightning", rev = "2ff16d707749123b9f39a503b523c9f3f3404934" }
48+
lightning-rapid-gossip-sync = { git = "https://github.com/tnull/rust-lightning", rev = "2ff16d707749123b9f39a503b523c9f3f3404934" }
49+
lightning-block-sync = { git = "https://github.com/tnull/rust-lightning", rev = "2ff16d707749123b9f39a503b523c9f3f3404934", features = ["rest-client", "rpc-client", "tokio"] }
50+
lightning-transaction-sync = { git = "https://github.com/tnull/rust-lightning", rev = "2ff16d707749123b9f39a503b523c9f3f3404934", features = ["esplora-async-https", "time", "electrum-rustls-ring"] }
51+
lightning-liquidity = { git = "https://github.com/tnull/rust-lightning", rev = "2ff16d707749123b9f39a503b523c9f3f3404934", features = ["std"] }
52+
lightning-macros = { git = "https://github.com/tnull/rust-lightning", rev = "2ff16d707749123b9f39a503b523c9f3f3404934" }
5353

5454
bdk_chain = { version = "0.23.0", default-features = false, features = ["std"] }
5555
bdk_esplora = { version = "0.22.0", default-features = false, features = ["async-https-rustls", "tokio"]}
@@ -85,7 +85,7 @@ bitcoin-payment-instructions = { git = "https://github.com/jkczyz/bitcoin-paymen
8585
winapi = { version = "0.3", features = ["winbase"] }
8686

8787
[dev-dependencies]
88-
lightning = { git = "https://github.com/tnull/rust-lightning", rev = "8800d488f73f1353e67c2e6364a0ec78546880ad", features = ["std", "_test_utils"] }
88+
lightning = { git = "https://github.com/tnull/rust-lightning", rev = "2ff16d707749123b9f39a503b523c9f3f3404934", features = ["std", "_test_utils"] }
8989
rand = { version = "0.9.2", default-features = false, features = ["std", "thread_rng", "os_rng"] }
9090
proptest = "1.0.0"
9191
regex = "1.5.6"
@@ -172,14 +172,14 @@ harness = false
172172
#vss-client-ng = { git = "https://github.com/lightningdevkit/vss-client", branch = "main" }
173173
#
174174
[patch."https://github.com/lightningdevkit/rust-lightning"]
175-
lightning = { git = "https://github.com/tnull/rust-lightning", rev = "8800d488f73f1353e67c2e6364a0ec78546880ad" }
176-
lightning-types = { git = "https://github.com/tnull/rust-lightning", rev = "8800d488f73f1353e67c2e6364a0ec78546880ad" }
177-
lightning-invoice = { git = "https://github.com/tnull/rust-lightning", rev = "8800d488f73f1353e67c2e6364a0ec78546880ad" }
178-
lightning-net-tokio = { git = "https://github.com/tnull/rust-lightning", rev = "8800d488f73f1353e67c2e6364a0ec78546880ad" }
179-
lightning-persister = { git = "https://github.com/tnull/rust-lightning", rev = "8800d488f73f1353e67c2e6364a0ec78546880ad" }
180-
lightning-background-processor = { git = "https://github.com/tnull/rust-lightning", rev = "8800d488f73f1353e67c2e6364a0ec78546880ad" }
181-
lightning-rapid-gossip-sync = { git = "https://github.com/tnull/rust-lightning", rev = "8800d488f73f1353e67c2e6364a0ec78546880ad" }
182-
lightning-block-sync = { git = "https://github.com/tnull/rust-lightning", rev = "8800d488f73f1353e67c2e6364a0ec78546880ad" }
183-
lightning-transaction-sync = { git = "https://github.com/tnull/rust-lightning", rev = "8800d488f73f1353e67c2e6364a0ec78546880ad" }
184-
lightning-liquidity = { git = "https://github.com/tnull/rust-lightning", rev = "8800d488f73f1353e67c2e6364a0ec78546880ad" }
185-
lightning-macros = { git = "https://github.com/tnull/rust-lightning", rev = "8800d488f73f1353e67c2e6364a0ec78546880ad" }
175+
lightning = { git = "https://github.com/tnull/rust-lightning", rev = "2ff16d707749123b9f39a503b523c9f3f3404934" }
176+
lightning-types = { git = "https://github.com/tnull/rust-lightning", rev = "2ff16d707749123b9f39a503b523c9f3f3404934" }
177+
lightning-invoice = { git = "https://github.com/tnull/rust-lightning", rev = "2ff16d707749123b9f39a503b523c9f3f3404934" }
178+
lightning-net-tokio = { git = "https://github.com/tnull/rust-lightning", rev = "2ff16d707749123b9f39a503b523c9f3f3404934" }
179+
lightning-persister = { git = "https://github.com/tnull/rust-lightning", rev = "2ff16d707749123b9f39a503b523c9f3f3404934" }
180+
lightning-background-processor = { git = "https://github.com/tnull/rust-lightning", rev = "2ff16d707749123b9f39a503b523c9f3f3404934" }
181+
lightning-rapid-gossip-sync = { git = "https://github.com/tnull/rust-lightning", rev = "2ff16d707749123b9f39a503b523c9f3f3404934" }
182+
lightning-block-sync = { git = "https://github.com/tnull/rust-lightning", rev = "2ff16d707749123b9f39a503b523c9f3f3404934" }
183+
lightning-transaction-sync = { git = "https://github.com/tnull/rust-lightning", rev = "2ff16d707749123b9f39a503b523c9f3f3404934" }
184+
lightning-liquidity = { git = "https://github.com/tnull/rust-lightning", rev = "2ff16d707749123b9f39a503b523c9f3f3404934" }
185+
lightning-macros = { git = "https://github.com/tnull/rust-lightning", rev = "2ff16d707749123b9f39a503b523c9f3f3404934" }

src/builder.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ use crate::runtime::{Runtime, RuntimeSpawner};
7878
use crate::tx_broadcaster::TransactionBroadcaster;
7979
use crate::types::{
8080
AsyncPersister, ChainMonitor, ChannelManager, DynStore, DynStoreWrapper, GossipSync, Graph,
81-
InnerMessageRouter, KeysManager, MessageRouter, OnionMessenger, PaymentStore, PeerManager,
81+
InnerMessageRouter, KeysManager, OnionMessenger, PaymentStore, PeerManager,
8282
PendingPaymentStore, Persister, SyncAndAsyncKVStore,
8383
};
8484
use crate::wallet::persist::KVStoreWalletPersister;

0 commit comments

Comments
 (0)