Fix bolt11 reconciliation

This commit is contained in:
Jon Staab
2026-06-01 15:09:03 -07:00
parent 76fbee6be1
commit fd38f9cbc0
4 changed files with 61 additions and 37 deletions
+4 -1
View File
@@ -66,7 +66,10 @@ pub async fn get_tenant(
let mut tenant = api.get_tenant_or_404(&pubkey).await?;
api.billing.sync_stripe_customer(&mut tenant).await.map_err(internal)?;
api.billing
.sync_stripe_customer(&mut tenant)
.await
.map_err(internal)?;
ok(TenantResponse::from(tenant))
}