Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
110 changes: 55 additions & 55 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

24 changes: 12 additions & 12 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,17 +39,17 @@ default = []
#lightning-liquidity = { version = "0.2.0", features = ["std"] }
#lightning-macros = { version = "0.2.0" }

lightning = { git = "https://github.com/ZeusLN/rust-lightning", branch = "lsps7-for-ldk-node-close-fix", features = ["std"] }
lightning-types = { git = "https://github.com/ZeusLN/rust-lightning", branch = "lsps7-for-ldk-node-close-fix" }
lightning-invoice = { git = "https://github.com/ZeusLN/rust-lightning", branch = "lsps7-for-ldk-node-close-fix", features = ["std"] }
lightning-net-tokio = { git = "https://github.com/ZeusLN/rust-lightning", branch = "lsps7-for-ldk-node-close-fix" }
lightning-persister = { git = "https://github.com/ZeusLN/rust-lightning", branch = "lsps7-for-ldk-node-close-fix", features = ["tokio"] }
lightning-background-processor = { git = "https://github.com/ZeusLN/rust-lightning", branch = "lsps7-for-ldk-node-close-fix" }
lightning-rapid-gossip-sync = { git = "https://github.com/ZeusLN/rust-lightning", branch = "lsps7-for-ldk-node-close-fix" }
lightning-block-sync = { git = "https://github.com/ZeusLN/rust-lightning", branch = "lsps7-for-ldk-node-close-fix", features = ["rest-client", "rpc-client", "tokio"] }
lightning-transaction-sync = { git = "https://github.com/ZeusLN/rust-lightning", branch = "lsps7-for-ldk-node-close-fix", features = ["esplora-async-https", "time", "electrum-rustls-ring"] }
lightning-liquidity = { git = "https://github.com/ZeusLN/rust-lightning", branch = "lsps7-for-ldk-node-close-fix", features = ["std"] }
lightning-macros = { git = "https://github.com/ZeusLN/rust-lightning", branch = "lsps7-for-ldk-node-close-fix" }
lightning = { git = "https://github.com/ZeusLN/rust-lightning", branch = "zeus-0.2", features = ["std"] }
lightning-types = { git = "https://github.com/ZeusLN/rust-lightning", branch = "zeus-0.2" }
lightning-invoice = { git = "https://github.com/ZeusLN/rust-lightning", branch = "zeus-0.2", features = ["std"] }
lightning-net-tokio = { git = "https://github.com/ZeusLN/rust-lightning", branch = "zeus-0.2" }
lightning-persister = { git = "https://github.com/ZeusLN/rust-lightning", branch = "zeus-0.2", features = ["tokio"] }
lightning-background-processor = { git = "https://github.com/ZeusLN/rust-lightning", branch = "zeus-0.2" }
lightning-rapid-gossip-sync = { git = "https://github.com/ZeusLN/rust-lightning", branch = "zeus-0.2" }
lightning-block-sync = { git = "https://github.com/ZeusLN/rust-lightning", branch = "zeus-0.2", features = ["rest-client", "rpc-client", "tokio"] }
lightning-transaction-sync = { git = "https://github.com/ZeusLN/rust-lightning", branch = "zeus-0.2", features = ["esplora-async-https", "time", "electrum-rustls-ring"] }
lightning-liquidity = { git = "https://github.com/ZeusLN/rust-lightning", branch = "zeus-0.2", features = ["std"] }
lightning-macros = { git = "https://github.com/ZeusLN/rust-lightning", branch = "zeus-0.2" }

bdk_chain = { version = "0.23.0", default-features = false, features = ["std"] }
bdk_esplora = { version = "0.22.0", default-features = false, features = ["async-https-rustls", "tokio"]}
Expand Down Expand Up @@ -82,7 +82,7 @@ prost = { version = "0.11.6", default-features = false}
winapi = { version = "0.3", features = ["winbase"] }

[dev-dependencies]
lightning = { git = "https://github.com/ZeusLN/rust-lightning", branch = "lsps7-for-ldk-node-close-fix", features = ["std", "_test_utils"] }
lightning = { git = "https://github.com/ZeusLN/rust-lightning", branch = "zeus-0.2", features = ["std", "_test_utils"] }
proptest = "1.0.0"
regex = "1.5.6"
criterion = { version = "0.7.0", features = ["async_tokio"] }
Expand Down
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import PackageDescription

let tag = "v0.7.0"
let checksum = "073c332d846ad2e6863fe3f7bbfe02a378cbed9286d9057c9b2c5500fb816365"
let checksum = "649c2c08ff6870220eb8c3871728c9791c40215040a0e9714963130dd0394d98"
let url = "https://github.com/lightningdevkit/ldk-node/releases/download/\(tag)/LDKNodeFFI.xcframework.zip"

let package = Package(
Expand Down
2 changes: 2 additions & 0 deletions benches/payments.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ fn spawn_payment(node_a: Arc<Node>, node_b: Arc<Node>, amount_msat: u64) {
node_b.node_id(),
preimage,
None,
None,
);

match payment_id {
Expand Down Expand Up @@ -109,6 +110,7 @@ async fn send_payments(node_a: Arc<Node>, node_b: Arc<Node>) -> std::time::Durat
node_a.node_id(),
PaymentPreimage(preimage_bytes),
None,
None,
)
.ok()
.unwrap();
Expand Down
Loading
Loading