Skip to content

Commit 07d0ff7

Browse files
author
Fernando Ledesma
committed
Fix HTLC store race condition between insert and peer_connected
1 parent fdbbb61 commit 07d0ff7

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

Cargo.toml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -42,17 +42,17 @@ default = []
4242
# lightning-macros = { version = "0.2.0" }
4343

4444
# Branch: https://github.com/moneydevkit/rust-lightning/commits/lsp-0.2.0/
45-
lightning = { git = "https://github.com/moneydevkit/rust-lightning", rev = "68c0e4dee543058578246ec18b084a13f7cae84f", features = ["std"] }
46-
lightning-types = { git = "https://github.com/moneydevkit/rust-lightning", rev = "68c0e4dee543058578246ec18b084a13f7cae84f" }
47-
lightning-invoice = { git = "https://github.com/moneydevkit/rust-lightning", rev = "68c0e4dee543058578246ec18b084a13f7cae84f", features = ["std"] }
48-
lightning-net-tokio = { git = "https://github.com/moneydevkit/rust-lightning", rev = "68c0e4dee543058578246ec18b084a13f7cae84f" }
49-
lightning-persister = { git = "https://github.com/moneydevkit/rust-lightning", rev = "68c0e4dee543058578246ec18b084a13f7cae84f", features = ["tokio"] }
50-
lightning-background-processor = { git = "https://github.com/moneydevkit/rust-lightning", rev = "68c0e4dee543058578246ec18b084a13f7cae84f" }
51-
lightning-rapid-gossip-sync = { git = "https://github.com/moneydevkit/rust-lightning", rev = "68c0e4dee543058578246ec18b084a13f7cae84f" }
52-
lightning-block-sync = { git = "https://github.com/moneydevkit/rust-lightning", rev = "68c0e4dee543058578246ec18b084a13f7cae84f", features = ["rest-client", "rpc-client", "tokio"] }
53-
lightning-transaction-sync = { git = "https://github.com/moneydevkit/rust-lightning", rev = "68c0e4dee543058578246ec18b084a13f7cae84f", features = ["esplora-async-https", "time", "electrum-rustls-ring"] }
54-
lightning-liquidity = { git = "https://github.com/moneydevkit/rust-lightning", rev = "68c0e4dee543058578246ec18b084a13f7cae84f", features = ["std"] }
55-
lightning-macros = { git = "https://github.com/moneydevkit/rust-lightning", rev = "68c0e4dee543058578246ec18b084a13f7cae84f" }
45+
lightning = { git = "https://github.com/moneydevkit/rust-lightning", rev = "f5dbdeae757962c995379506fe4bfa60c8e0da8a", features = ["std"] }
46+
lightning-types = { git = "https://github.com/moneydevkit/rust-lightning", rev = "f5dbdeae757962c995379506fe4bfa60c8e0da8a" }
47+
lightning-invoice = { git = "https://github.com/moneydevkit/rust-lightning", rev = "f5dbdeae757962c995379506fe4bfa60c8e0da8a", features = ["std"] }
48+
lightning-net-tokio = { git = "https://github.com/moneydevkit/rust-lightning", rev = "f5dbdeae757962c995379506fe4bfa60c8e0da8a" }
49+
lightning-persister = { git = "https://github.com/moneydevkit/rust-lightning", rev = "f5dbdeae757962c995379506fe4bfa60c8e0da8a", features = ["tokio"] }
50+
lightning-background-processor = { git = "https://github.com/moneydevkit/rust-lightning", rev = "f5dbdeae757962c995379506fe4bfa60c8e0da8a" }
51+
lightning-rapid-gossip-sync = { git = "https://github.com/moneydevkit/rust-lightning", rev = "f5dbdeae757962c995379506fe4bfa60c8e0da8a" }
52+
lightning-block-sync = { git = "https://github.com/moneydevkit/rust-lightning", rev = "f5dbdeae757962c995379506fe4bfa60c8e0da8a", features = ["rest-client", "rpc-client", "tokio"] }
53+
lightning-transaction-sync = { git = "https://github.com/moneydevkit/rust-lightning", rev = "f5dbdeae757962c995379506fe4bfa60c8e0da8a", features = ["esplora-async-https", "time", "electrum-rustls-ring"] }
54+
lightning-liquidity = { git = "https://github.com/moneydevkit/rust-lightning", rev = "f5dbdeae757962c995379506fe4bfa60c8e0da8a", features = ["std"] }
55+
lightning-macros = { git = "https://github.com/moneydevkit/rust-lightning", rev = "f5dbdeae757962c995379506fe4bfa60c8e0da8a" }
5656

5757
#lightning = { path = "../rust-lightning/lightning", features = ["std"] }
5858
#lightning-types = { path = "../rust-lightning/lightning-types" }
@@ -101,7 +101,7 @@ winapi = { version = "0.3", features = ["winbase"] }
101101
[dev-dependencies]
102102
# lightning = { version = "0.2.0", features = ["std", "_test_utils"] }
103103
# Branch: https://github.com/moneydevkit/rust-lightning/commits/lsp-0.2.0/
104-
lightning = { git = "https://github.com/moneydevkit/rust-lightning", rev = "68c0e4dee543058578246ec18b084a13f7cae84f", features = ["std", "_test_utils"] }
104+
lightning = { git = "https://github.com/moneydevkit/rust-lightning", rev = "f5dbdeae757962c995379506fe4bfa60c8e0da8a", features = ["std", "_test_utils"] }
105105
#lightning = { path = "../rust-lightning/lightning", features = ["std", "_test_utils"] }
106106
proptest = "1.0.0"
107107
regex = "1.5.6"

0 commit comments

Comments
 (0)