From 6e0df0def1f9822442b14fb5c6ef91911b3a59bd Mon Sep 17 00:00:00 2001 From: kyranjamie Date: Wed, 20 Jan 2021 18:41:12 +0100 Subject: [PATCH] chore: increase delay before wallet decrypt, ref #549 --- app/components/version-info.tsx | 9 ++------- app/modals/transaction/transaction-modal.tsx | 3 ++- 2 files changed, 4 insertions(+), 8 deletions(-) diff --git a/app/components/version-info.tsx b/app/components/version-info.tsx index e49b9015f..287f6f97b 100644 --- a/app/components/version-info.tsx +++ b/app/components/version-info.tsx @@ -57,17 +57,12 @@ export const VersionInfo: FC = () => { Found a bug? Open an issue {pullRequest && branchName && ( - + {branchName} )} {shaShort && ( - + Commit:{' '} = ({ balance, address }) => { if (walletType === 'software') { setIsDecrypting(true); - await delay(100); + await delay(300); + const [decryptionError, privateKey] = await safeAwait(getSoftwareWalletPrivateKey()); if (decryptionError) {