From 1973d7642777efe344067c37b2e765455859ef3c Mon Sep 17 00:00:00 2001 From: archipelago Date: Sun, 14 Jun 2026 14:41:40 -0400 Subject: [PATCH] style: rustfmt lnd migrate_locked_wallet matches! call Co-Authored-By: Claude Opus 4.8 (1M context) --- core/archipelago/src/container/lnd.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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); } }