wallet_rpc_server: fix crash in validate_address if no wallet is loaded

Reported by SmajeNz0
pull/200/head
moneromooo-monero 5 years ago
parent 475481949a
commit 968848a77b
No known key found for this signature in database
GPG Key ID: 686F07454D6CEFC3

@ -4067,9 +4067,10 @@ namespace tools
{ cryptonote::TESTNET, "testnet" },
{ cryptonote::STAGENET, "stagenet" },
};
if (!req.any_net_type && !m_wallet) return not_open(er);
for (const auto &net_type: net_types)
{
if (!req.any_net_type && net_type.type != m_wallet->nettype())
if (!req.any_net_type && (!m_wallet || net_type.type != m_wallet->nettype()))
continue;
if (req.allow_openalias)
{

Loading…
Cancel
Save