Skip to content

Commit ed2a4a7

Browse files
committed
lint:fix
1 parent 2be2a64 commit ed2a4a7

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

packages/keyring-controller/src/KeyringController.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1026,8 +1026,10 @@ export class KeyringController extends BaseController<
10261026
const wallet = await getWallet();
10271027
privateKey = bytesToHex(wallet.getPrivateKey());
10281028
break;
1029-
} catch(e) {
1030-
throw new Error('Key derivation failed - possibly wrong passphrase');
1029+
} catch (e) {
1030+
throw new Error(
1031+
'Key derivation failed - possibly wrong passphrase',
1032+
);
10311033
}
10321034
}
10331035
default:

0 commit comments

Comments
 (0)