diff --git a/core/archipelago/src/container/lnd.rs b/core/archipelago/src/container/lnd.rs index 3639454d..a7ce21f9 100644 --- a/core/archipelago/src/container/lnd.rs +++ b/core/archipelago/src/container/lnd.rs @@ -428,7 +428,10 @@ pub(crate) async fn migrate_locked_wallet(candidates: &[String]) -> Result // If the per-node secret already opens it, nothing to rotate — just unlock. if let Some(secret) = read_wallet_password().await { - if matches!(try_unlock_once(&client, &secret).await, UnlockAttempt::Unlocked) { + if matches!( + try_unlock_once(&client, &secret).await, + UnlockAttempt::Unlocked + ) { return Ok(true); } }