Skip to content

Commit

Permalink
alpha2
Browse files Browse the repository at this point in the history
  • Loading branch information
benthecarman committed Sep 29, 2023
1 parent 63501c7 commit 6f573f7
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 11 deletions.
6 changes: 3 additions & 3 deletions mutiny-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ serde = { version = "^1.0", features = ["derive"] }
serde_json = { version = "^1.0" }
uuid = { version = "1.1.2", features = ["v4"] }
esplora-client = { version = "0.5", default-features = false }
lightning = { version = "0.0.117-alpha1", default-features = false, features = ["max_level_trace", "grind_signatures", "no-std"] }
lightning-invoice = { version = "0.25.0-alpha1", default-features = false, features = ["no-std", "serde"] }
lightning-rapid-gossip-sync = { version = "0.0.117-alpha1", default-features = false, features = ["no-std"] }
lightning = { version = "0.0.117-alpha2", default-features = false, features = ["max_level_trace", "grind_signatures", "no-std"] }
lightning-invoice = { version = "0.25.0-alpha2", default-features = false, features = ["no-std", "serde"] }
lightning-rapid-gossip-sync = { version = "0.0.117-alpha2", default-features = false, features = ["no-std"] }
chrono = "0.4.22"
futures-util = { version = "0.3", default-features = false }
reqwest = { version = "0.11", default-features = false, features = ["json"] }
Expand Down
8 changes: 2 additions & 6 deletions mutiny-core/src/ldkstorage.rs
Original file line number Diff line number Diff line change
Expand Up @@ -109,11 +109,7 @@ impl<S: MutinyStorage> MutinyNodePersister<S> {
sleep(50).await;
match persist_local_storage(&storage, &key, &object, Some(version), &logger).await {
Ok(()) => {
log_debug!(
logger,
"Persisted channel monitor: {:?}",
update_id.funding_txo
);
log_debug!(logger, "Persisted channel monitor: {update_id:?}");

// unwrap is safe, we set it up immediately
let chain_monitor = chain_monitor.lock().await;
Expand Down Expand Up @@ -720,7 +716,7 @@ impl<ChannelSigner: WriteableEcdsaChannelSigner, S: MutinyStorage> Persist<Chann
}
}

#[derive(Clone)]
#[derive(Debug, Clone)]
pub struct MonitorUpdateIdentifier {
pub funding_txo: OutPoint,
pub monitor_update_id: MonitorUpdateId,
Expand Down
4 changes: 2 additions & 2 deletions mutiny-wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ wasm-bindgen-futures = "0.4.33"
serde = { version = "^1.0", features = ["derive"] }
serde_json = { version = "^1.0" }
bitcoin = { version = "0.29.2", default-features = false, features = ["serde", "secp-recovery", "rand"] }
lightning = { version = "0.0.117-alpha1", default-features = false, features = ["no-std"] }
lightning-invoice = { version = "0.25.0-alpha1", default-features = false, features = ["no-std"] }
lightning = { version = "0.0.117-alpha2", default-features = false, features = ["no-std"] }
lightning-invoice = { version = "0.25.0-alpha2", default-features = false, features = ["no-std"] }
thiserror = "1.0"
instant = { version = "0.1", features = ["wasm-bindgen"] }
lnurl-rs = { version = "0.2.6", default-features = false }
Expand Down

0 comments on commit 6f573f7

Please sign in to comment.