mirror of
https://github.com/monero-project/monero-gui.git
synced 2025-01-26 20:45:54 +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
|
@ -77,8 +77,15 @@ void Subaddress::setLabel(quint32 accountIndex, quint32 addressIndex, const QStr
|
||||||
}
|
}
|
||||||
|
|
||||||
void Subaddress::refresh(quint32 accountIndex) const
|
void Subaddress::refresh(quint32 accountIndex) const
|
||||||
|
{
|
||||||
|
try
|
||||||
{
|
{
|
||||||
m_subaddressImpl->refresh(accountIndex);
|
m_subaddressImpl->refresh(accountIndex);
|
||||||
|
}
|
||||||
|
catch (const std::exception &e)
|
||||||
|
{
|
||||||
|
qCritical() << "Failed to refresh account" << accountIndex << "subaddresses:" << e.what();
|
||||||
|
}
|
||||||
getAll();
|
getAll();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue