Merge pull request #7742

f174a8f wallet_api: reconnectDevice (tobtoht)
This commit is contained in:
luigi1111
2021-06-24 14:05:35 -05:00
3 changed files with 21 additions and 0 deletions

View File

@@ -2571,6 +2571,23 @@ void WalletImpl::deviceShowAddress(uint32_t accountIndex, uint32_t addressIndex,
m_wallet->device_show_address(accountIndex, addressIndex, payment_id_param);
}
bool WalletImpl::reconnectDevice()
{
clearStatus();
bool r;
try {
r = m_wallet->reconnect_device();
}
catch (const std::exception &e) {
LOG_ERROR(__FUNCTION__ << " error: " << e.what());
setStatusError(e.what());
return false;
}
return r;
}
} // namespace
namespace Bitmonero = Monero;