Skip to content

Commit

Permalink
chore: release 0.3.2 multimint bump
Browse files Browse the repository at this point in the history
  • Loading branch information
Kodylow committed Apr 19, 2024
1 parent bbc3f8f commit cf20508
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 8 deletions.
10 changes: 5 additions & 5 deletions Cargo.lock

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

9 changes: 6 additions & 3 deletions fedimint-clientd/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fedimint-clientd"
version = "0.3.1"
version = "0.3.2"
edition = "2021"
description = "A fedimint client daemon for server side applications to hold, use, and manage Bitcoin"
repository = "https://github.com/fedimint/fedimint-clientd"
Expand Down Expand Up @@ -31,13 +31,16 @@ tower-http = { version = "0.5.2", features = ["cors", "auth", "trace"] }
bitcoin = "0.29.2"
itertools = "0.12.0"
lnurl-rs = { version = "0.5.0", features = ["async"], default-features = false }
reqwest = { version = "0.12.3", features = ["json", "rustls-tls"], default-features = false }
reqwest = { version = "0.12.3", features = [
"json",
"rustls-tls",
], default-features = false }
lightning-invoice = { version = "0.26.0", features = ["serde"] }
bitcoin_hashes = "0.13.0"
time = { version = "0.3.25", features = ["formatting"] }
chrono = "0.4.31"
futures-util = "0.3.30"
clap = { version = "3", features = ["derive", "env"] }
multimint = { version = "0.3.0" }
multimint = { version = "0.3.2" }
# multimint = { path = "../multimint" }
axum-otel-metrics = "0.8.0"
1 change: 1 addition & 0 deletions fedimint-clientd/src/state.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ pub struct AppState {
impl AppState {
pub async fn new(fm_db_path: PathBuf) -> Result<Self> {
let clients = MultiMint::new(fm_db_path).await?;
clients.update_gateway_caches(true).await?;
Ok(Self {
multimint: clients,
cashu_mint: None,
Expand Down

0 comments on commit cf20508

Please sign in to comment.