Skip to content

Commit 009cf5d

Browse files
committed
f Fix indentation
1 parent 152dc4a commit 009cf5d

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/lib.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -291,17 +291,17 @@ impl Node {
291291
log_trace!(
292292
sync_logger,
293293
"Stopping background syncing on-chain wallet.",
294-
);
294+
);
295295
return;
296296
}
297297
_ = onchain_wallet_sync_interval.tick() => {
298298
let now = Instant::now();
299299
match wallet.sync().await {
300300
Ok(()) => {
301301
log_trace!(
302-
sync_logger,
303-
"Background sync of on-chain wallet finished in {}ms.",
304-
now.elapsed().as_millis()
302+
sync_logger,
303+
"Background sync of on-chain wallet finished in {}ms.",
304+
now.elapsed().as_millis()
305305
);
306306
let unix_time_secs_opt =
307307
SystemTime::now().duration_since(UNIX_EPOCH).ok().map(|d| d.as_secs());
@@ -312,7 +312,7 @@ impl Node {
312312
sync_logger,
313313
"Background sync of on-chain wallet failed: {}",
314314
err
315-
)
315+
)
316316
}
317317
}
318318
}

0 commit comments

Comments
 (0)