fix: correct indentation in wallet-setup.ts

This commit is contained in:
NicolasCantu 2025-10-29 16:47:31 +01:00
parent 90bb585251
commit 3f7c3b1dbe

View File

@ -372,7 +372,7 @@ document.addEventListener('DOMContentLoaded', async () => {
// TEST: Déchiffrer le wallet pour valider que ça fonctionne // TEST: Déchiffrer le wallet pour valider que ça fonctionne
console.log('🔐 TEST: Attempting to decrypt wallet to validate encryption...'); console.log('🔐 TEST: Attempting to decrypt wallet to validate encryption...');
try { try {
const pbkdf2KeyTest = pbkdf2KeyResult.key; const pbkdf2KeyTest = pbkdf2KeyResult.key;
if (!pbkdf2KeyTest) { if (!pbkdf2KeyTest) {
console.error('❌ TEST: Failed to retrieve PBKDF2 key for decryption test'); console.error('❌ TEST: Failed to retrieve PBKDF2 key for decryption test');
} else { } else {