Skip to content

Commit a757dba

Browse files
committed
f Fix indentation
1 parent e779200 commit a757dba

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
@@ -292,17 +292,17 @@ impl Node {
292292
log_trace!(
293293
sync_logger,
294294
"Stopping background syncing on-chain wallet.",
295-
);
295+
);
296296
return;
297297
}
298298
_ = onchain_wallet_sync_interval.tick() => {
299299
let now = Instant::now();
300300
match wallet.sync().await {
301301
Ok(()) => {
302302
log_trace!(
303-
sync_logger,
304-
"Background sync of on-chain wallet finished in {}ms.",
305-
now.elapsed().as_millis()
303+
sync_logger,
304+
"Background sync of on-chain wallet finished in {}ms.",
305+
now.elapsed().as_millis()
306306
);
307307
let unix_time_secs_opt =
308308
SystemTime::now().duration_since(UNIX_EPOCH).ok().map(|d| d.as_secs());
@@ -313,7 +313,7 @@ impl Node {
313313
sync_logger,
314314
"Background sync of on-chain wallet failed: {}",
315315
err
316-
)
316+
)
317317
}
318318
}
319319
}

0 commit comments

Comments
 (0)