mirror of
https://codeberg.org/anoncontributorxmr/monero.git
synced 2024-11-26 21:03:28 +01:00
Merge pull request #183
250254c
Exception handling while refreshing in rpc wallet (credits to QCN) (Sammy Libre)
This commit is contained in:
commit
1925eeffa8
@ -58,7 +58,11 @@ namespace tools
|
|||||||
bool wallet_rpc_server::run()
|
bool wallet_rpc_server::run()
|
||||||
{
|
{
|
||||||
m_net_server.add_idle_handler([this](){
|
m_net_server.add_idle_handler([this](){
|
||||||
|
try {
|
||||||
m_wallet.refresh();
|
m_wallet.refresh();
|
||||||
|
} catch (const std::exception& ex) {
|
||||||
|
LOG_ERROR("Exception at while refreshing, what=" << ex.what());
|
||||||
|
}
|
||||||
return true;
|
return true;
|
||||||
}, 20000);
|
}, 20000);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user