mirror of
https://github.com/monero-project/monero.git
synced 2024-10-01 11:49:47 -04:00
Merge pull request #7288
015da03
wallet_rpc_server: don't abort on initial refresh failure (xiphon)
This commit is contained in:
commit
bf53f55366
@ -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)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user