Skip to content

Commit 6db000a

Browse files
committed
chore: fmt
1 parent 1665e62 commit 6db000a

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

harbor-client/src/db_models/schema.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ diesel::table! {
1010
}
1111
}
1212

13-
1413
diesel::table! {
1514
cashu_mint (mint_url) {
1615
mint_url -> Text,
@@ -134,4 +133,3 @@ diesel::allow_tables_to_appear_in_same_query!(
134133
on_chain_receives,
135134
profile,
136135
);
137-

harbor-client/src/fedimint_client.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -422,8 +422,8 @@ pub(crate) async fn spawn_invoice_receive_subscription(
422422
)
423423
.await;
424424

425-
if let Err(e) =
426-
storage.mark_ln_receive_as_success(operation_id.fmt_full().to_string(), None)
425+
if let Err(e) = storage
426+
.mark_ln_receive_as_success(operation_id.fmt_full().to_string(), None)
427427
{
428428
error!("Could not mark lightning receive as success: {e}");
429429
}
@@ -485,8 +485,8 @@ pub(crate) async fn spawn_lnv2_receive_subscription(
485485
)
486486
.await;
487487

488-
if let Err(e) =
489-
storage.mark_ln_receive_as_success(operation_id.fmt_full().to_string(), None)
488+
if let Err(e) = storage
489+
.mark_ln_receive_as_success(operation_id.fmt_full().to_string(), None)
490490
{
491491
error!("Could not mark lightning receive as success: {e}");
492492
}

0 commit comments

Comments
 (0)