From b678771c8a6be2d5f39d9e6d730a51222ca92dd2 Mon Sep 17 00:00:00 2001 From: Thomas Zarebczan Date: Mon, 13 Jan 2020 15:02:05 -0500 Subject: [PATCH] Fix: wait longer for wallet startup --- ui/component/splash/view.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/component/splash/view.jsx b/ui/component/splash/view.jsx index 7414cd099..422a49b07 100644 --- a/ui/component/splash/view.jsx +++ b/ui/component/splash/view.jsx @@ -14,7 +14,7 @@ import 'css-doodle'; const FORTY_FIVE_SECONDS = 45 * 1000; const UPDATE_INTERVAL = 500; // .5 seconds -const MAX_WALLET_WAIT = 10; // 10 seconds for wallet to be started, but servers to be unavailable +const MAX_WALLET_WAIT = 20; // 10 seconds for wallet to be started, but servers to be unavailable type Props = { checkDaemonVersion: () => Promise,