From fbac49d6cccce94e65d74d1c21eec11939ab240f Mon Sep 17 00:00:00 2001 From: Tony Giorgio Date: Thu, 18 Apr 2024 13:02:00 -0500 Subject: [PATCH] Longer ping timeout fork of LDK --- Cargo.lock | 12 ++++++------ Cargo.toml | 12 ++++++------ 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5e779a338..37e925d64 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2253,7 +2253,7 @@ dependencies = [ [[package]] name = "lightning" version = "0.0.121" -source = "git+https://github.com/MutinyWallet/rust-lightning.git?rev=0e2c116d1fa9d8db25e0364466dcacf4c7366c33#0e2c116d1fa9d8db25e0364466dcacf4c7366c33" +source = "git+https://github.com/MutinyWallet/rust-lightning.git?rev=e660e068f6f93b13dc782b2d607795716b48ed15#e660e068f6f93b13dc782b2d607795716b48ed15" dependencies = [ "bitcoin 0.30.2", "hex-conservative", @@ -2264,7 +2264,7 @@ dependencies = [ [[package]] name = "lightning-background-processor" version = "0.0.121" -source = "git+https://github.com/MutinyWallet/rust-lightning.git?rev=0e2c116d1fa9d8db25e0364466dcacf4c7366c33#0e2c116d1fa9d8db25e0364466dcacf4c7366c33" +source = "git+https://github.com/MutinyWallet/rust-lightning.git?rev=e660e068f6f93b13dc782b2d607795716b48ed15#e660e068f6f93b13dc782b2d607795716b48ed15" dependencies = [ "bitcoin 0.30.2", "lightning 0.0.121", @@ -2289,7 +2289,7 @@ dependencies = [ [[package]] name = "lightning-invoice" version = "0.29.0" -source = "git+https://github.com/MutinyWallet/rust-lightning.git?rev=0e2c116d1fa9d8db25e0364466dcacf4c7366c33#0e2c116d1fa9d8db25e0364466dcacf4c7366c33" +source = "git+https://github.com/MutinyWallet/rust-lightning.git?rev=e660e068f6f93b13dc782b2d607795716b48ed15#e660e068f6f93b13dc782b2d607795716b48ed15" dependencies = [ "bech32", "bitcoin 0.30.2", @@ -2316,7 +2316,7 @@ dependencies = [ [[package]] name = "lightning-net-tokio" version = "0.0.121" -source = "git+https://github.com/MutinyWallet/rust-lightning.git?rev=0e2c116d1fa9d8db25e0364466dcacf4c7366c33#0e2c116d1fa9d8db25e0364466dcacf4c7366c33" +source = "git+https://github.com/MutinyWallet/rust-lightning.git?rev=e660e068f6f93b13dc782b2d607795716b48ed15#e660e068f6f93b13dc782b2d607795716b48ed15" dependencies = [ "bitcoin 0.30.2", "lightning 0.0.121", @@ -2326,7 +2326,7 @@ dependencies = [ [[package]] name = "lightning-rapid-gossip-sync" version = "0.0.121" -source = "git+https://github.com/MutinyWallet/rust-lightning.git?rev=0e2c116d1fa9d8db25e0364466dcacf4c7366c33#0e2c116d1fa9d8db25e0364466dcacf4c7366c33" +source = "git+https://github.com/MutinyWallet/rust-lightning.git?rev=e660e068f6f93b13dc782b2d607795716b48ed15#e660e068f6f93b13dc782b2d607795716b48ed15" dependencies = [ "bitcoin 0.30.2", "lightning 0.0.121", @@ -2335,7 +2335,7 @@ dependencies = [ [[package]] name = "lightning-transaction-sync" version = "0.0.121" -source = "git+https://github.com/MutinyWallet/rust-lightning.git?rev=0e2c116d1fa9d8db25e0364466dcacf4c7366c33#0e2c116d1fa9d8db25e0364466dcacf4c7366c33" +source = "git+https://github.com/MutinyWallet/rust-lightning.git?rev=e660e068f6f93b13dc782b2d607795716b48ed15#e660e068f6f93b13dc782b2d607795716b48ed15" dependencies = [ "bdk-macros", "bitcoin 0.30.2", diff --git a/Cargo.toml b/Cargo.toml index a6d121f68..6926bb4ad 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,9 +15,9 @@ opt-level = "z" opt-level = "z" [patch.crates-io] -lightning = { git = 'https://github.com/MutinyWallet/rust-lightning.git', rev = "0e2c116d1fa9d8db25e0364466dcacf4c7366c33" } -lightning-invoice = { git = 'https://github.com/MutinyWallet/rust-lightning.git', rev = "0e2c116d1fa9d8db25e0364466dcacf4c7366c33" } -lightning-rapid-gossip-sync = { git = 'https://github.com/MutinyWallet/rust-lightning.git', rev = "0e2c116d1fa9d8db25e0364466dcacf4c7366c33" } -lightning-background-processor = { git = 'https://github.com/MutinyWallet/rust-lightning.git', rev = "0e2c116d1fa9d8db25e0364466dcacf4c7366c33" } -lightning-transaction-sync = { git = 'https://github.com/MutinyWallet/rust-lightning.git', rev = "0e2c116d1fa9d8db25e0364466dcacf4c7366c33" } -lightning-net-tokio = { git = 'https://github.com/MutinyWallet/rust-lightning.git', rev = "0e2c116d1fa9d8db25e0364466dcacf4c7366c33" } +lightning = { git = 'https://github.com/MutinyWallet/rust-lightning.git', rev = "e660e068f6f93b13dc782b2d607795716b48ed15" } +lightning-invoice = { git = 'https://github.com/MutinyWallet/rust-lightning.git', rev = "e660e068f6f93b13dc782b2d607795716b48ed15" } +lightning-rapid-gossip-sync = { git = 'https://github.com/MutinyWallet/rust-lightning.git', rev = "e660e068f6f93b13dc782b2d607795716b48ed15" } +lightning-background-processor = { git = 'https://github.com/MutinyWallet/rust-lightning.git', rev = "e660e068f6f93b13dc782b2d607795716b48ed15" } +lightning-transaction-sync = { git = 'https://github.com/MutinyWallet/rust-lightning.git', rev = "e660e068f6f93b13dc782b2d607795716b48ed15" } +lightning-net-tokio = { git = 'https://github.com/MutinyWallet/rust-lightning.git', rev = "e660e068f6f93b13dc782b2d607795716b48ed15" }