yeah, theres a way to check LND’s own wallet scan before assuming the funds are gone.
Go to umbrelOS Settings → Advanced → Terminal → App, select Lightning Node, then run:
lncli getrecoveryinfo
You’re looking for:
"recovery_finished": true,
"progress": 1
Also run:
lncli getinfo
and check that this says:
"synced_to_chain": true
If recovery isn’t finished or the progress is below 1, dont run another restore yet. Just keep Bitcoin Node and Lightning Node running. LND’s wallet scan can still be working even when the Bitcoin app itself looks synced.
If both of those checks are complete but the recent transactions are still missing, you can make LND rebuild its on-chain transaction history. In the same Lightning Node terminal, run:
touch /data/.lnd/lnd.conf
sed -i '/^[[:space:]]*reset-wallet-transactions[[:space:]]*=/d' /data/.lnd/lnd.conf
printf '\nreset-wallet-transactions=true\n' >> /data/.lnd/lnd.conf
Then restart Lightning Node from the Umbrel dashboard and leave it running. You can check the rescan from the terminal with:
grep -iE 'Started rescan|Finished rescan' /data/.lnd/logs/bitcoin/mainnet/lnd.log | tail -n 20
Once you see a new Finished rescan line, remove the setting:
sed -i '/^[[:space:]]*reset-wallet-transactions[[:space:]]*=/d' /data/.lnd/lnd.conf
Then restart Lightning Node once more. Removing that line is important, otherwise it’ll repeat the rescan every time the app restarts.
Afterward, check the balance and transaction list again:
lncli walletbalance
lncli listchaintxns
This only rebuilds the on-chain wallet history. It doesn’t reopen old channels, and it wont increase the address recovery window. If the rescan finishes but the transactions are still missing, post the output of those commands and the TXIDs of the missing deposits here. Never post your 24 words.
For the two NVMe drives, a mirror would protect against one SSD physically dying, but it still isnt a backup. I read somewhere that the Umbrel team confirmed RAID support for other devices is coming very soon, possibly in the next umbrelOS update, so I’d honestly hold off on trying to build a manual RAID setup and wait for that. For now I’d keep Umbrel and Linux on separate drives and back up the important wallet/app data elsewhere. The blockchain itself can always be downloaded again.