wallet_rpc_server: don't abort on initial refresh failure

This commit is contained in:
xiphon 2021-01-07 13:38:15 +00:00
parent a1eca8ca7e
commit 015da03a6f

View file

@ -4438,7 +4438,14 @@ public:
wal->stop();
});
wal->refresh(wal->is_trusted_daemon());
try
{
wal->refresh(wal->is_trusted_daemon());
}
catch (const std::exception& e)
{
LOG_ERROR(tools::wallet_rpc_server::tr("Initial refresh failed: ") << e.what());
}
// if we ^C during potentially length load/refresh, there's no server loop yet
if (quit)
{