mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-11-17 08:17:59 +00:00
Subaddress: log account subaddresses refresh error
This commit is contained in:
parent
3ca5f10fa8
commit
93b22311e3
1 changed files with 8 additions and 1 deletions
|
@ -78,7 +78,14 @@ void Subaddress::setLabel(quint32 accountIndex, quint32 addressIndex, const QStr
|
|||
|
||||
void Subaddress::refresh(quint32 accountIndex) const
|
||||
{
|
||||
m_subaddressImpl->refresh(accountIndex);
|
||||
try
|
||||
{
|
||||
m_subaddressImpl->refresh(accountIndex);
|
||||
}
|
||||
catch (const std::exception &e)
|
||||
{
|
||||
qCritical() << "Failed to refresh account" << accountIndex << "subaddresses:" << e.what();
|
||||
}
|
||||
getAll();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue