mirror of
https://codeberg.org/anoncontributorxmr/monero.git
synced 2024-11-10 21:23:27 +01:00
Wallet API: Catch error from tools::is_local_address
This commit is contained in:
parent
e56bf442c3
commit
4efc926d28
@ -40,7 +40,12 @@ namespace Utils {
|
|||||||
|
|
||||||
bool isAddressLocal(const std::string &address)
|
bool isAddressLocal(const std::string &address)
|
||||||
{
|
{
|
||||||
|
try {
|
||||||
return tools::is_local_address(address);
|
return tools::is_local_address(address);
|
||||||
|
} catch (const std::exception &e) {
|
||||||
|
MERROR("error: " << e.what());
|
||||||
|
return false;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user