From adcc1c545c0b5b4ffcbec779495e6c984f0f5ffb Mon Sep 17 00:00:00 2001 From: Lucas Soriano del Pino Date: Wed, 23 Oct 2024 12:37:32 +1100 Subject: [PATCH] fix: Use correct input in settle claim transaction See https://github.com/get10101/rust-dlc/commit/81090c4. --- Cargo.lock | 10 +++++----- Cargo.toml | 10 +++++----- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a475e594c..fed17a285 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1374,7 +1374,7 @@ dependencies = [ [[package]] name = "dlc" version = "0.4.0" -source = "git+https://github.com/get10101/rust-dlc?rev=8f65a0b#8f65a0b21bf29cc614a6518b31792b0ab9741479" +source = "git+https://github.com/get10101/rust-dlc?rev=41f34a3#41f34a33269153c4b05d623842b371fab47822a0" dependencies = [ "bitcoin 0.29.2", "miniscript 8.0.2", @@ -1386,7 +1386,7 @@ dependencies = [ [[package]] name = "dlc-manager" version = "0.4.0" -source = "git+https://github.com/get10101/rust-dlc?rev=8f65a0b#8f65a0b21bf29cc614a6518b31792b0ab9741479" +source = "git+https://github.com/get10101/rust-dlc?rev=41f34a3#41f34a33269153c4b05d623842b371fab47822a0" dependencies = [ "async-trait", "bitcoin 0.29.2", @@ -1402,7 +1402,7 @@ dependencies = [ [[package]] name = "dlc-messages" version = "0.4.0" -source = "git+https://github.com/get10101/rust-dlc?rev=8f65a0b#8f65a0b21bf29cc614a6518b31792b0ab9741479" +source = "git+https://github.com/get10101/rust-dlc?rev=41f34a3#41f34a33269153c4b05d623842b371fab47822a0" dependencies = [ "bitcoin 0.29.2", "dlc", @@ -1415,7 +1415,7 @@ dependencies = [ [[package]] name = "dlc-trie" version = "0.4.0" -source = "git+https://github.com/get10101/rust-dlc?rev=8f65a0b#8f65a0b21bf29cc614a6518b31792b0ab9741479" +source = "git+https://github.com/get10101/rust-dlc?rev=41f34a3#41f34a33269153c4b05d623842b371fab47822a0" dependencies = [ "bitcoin 0.29.2", "dlc", @@ -2879,7 +2879,7 @@ checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39" [[package]] name = "p2pd-oracle-client" version = "0.1.0" -source = "git+https://github.com/get10101/rust-dlc?rev=8f65a0b#8f65a0b21bf29cc614a6518b31792b0ab9741479" +source = "git+https://github.com/get10101/rust-dlc?rev=41f34a3#41f34a33269153c4b05d623842b371fab47822a0" dependencies = [ "chrono", "dlc-manager", diff --git a/Cargo.toml b/Cargo.toml index 661b7bf61..0ac1050b3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,11 +19,11 @@ resolver = "2" # We are using our own fork of `rust-dlc` at least until we can drop all the LN-DLC features. Also, # `p2pderivatives/rust-dlc#master` is missing certain patches that can only be found in the LN-DLC # branch. -dlc-manager = { git = "https://github.com/get10101/rust-dlc", rev = "8f65a0b" } -dlc-messages = { git = "https://github.com/get10101/rust-dlc", rev = "8f65a0b" } -dlc = { git = "https://github.com/get10101/rust-dlc", rev = "8f65a0b" } -p2pd-oracle-client = { git = "https://github.com/get10101/rust-dlc", rev = "8f65a0b" } -dlc-trie = { git = "https://github.com/get10101/rust-dlc", rev = "8f65a0b" } +dlc-manager = { git = "https://github.com/get10101/rust-dlc", rev = "81090c4" } +dlc-messages = { git = "https://github.com/get10101/rust-dlc", rev = "81090c4" } +dlc = { git = "https://github.com/get10101/rust-dlc", rev = "81090c4" } +p2pd-oracle-client = { git = "https://github.com/get10101/rust-dlc", rev = "81090c4" } +dlc-trie = { git = "https://github.com/get10101/rust-dlc", rev = "81090c4" } # We should usually track the `p2pderivatives/split-tx-experiment[-10101]` branch. For now we depend # on a special fork which removes a panic in `rust-lightning`.