mirror of
https://github.com/monero-project/monero.git
synced 2024-11-17 08:17:37 +00:00
Wallet API: Catch error from tools::is_local_address
This commit is contained in:
parent
e56bf442c3
commit
4efc926d28
1 changed files with 7 additions and 2 deletions
|
@ -40,7 +40,12 @@ namespace Utils {
|
|||
|
||||
bool isAddressLocal(const std::string &address)
|
||||
{
|
||||
try {
|
||||
return tools::is_local_address(address);
|
||||
} catch (const std::exception &e) {
|
||||
MERROR("error: " << e.what());
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue