blockchain: return error when requesting non existent output

avoids RPC thread dying, causing the wallet to timeout
This commit is contained in:
moneromooo-monero 2018-06-01 21:52:04 +01:00 committed by wowario
parent 9d366226cb
commit 6270a903c8

View File

@ -1942,6 +1942,8 @@ bool Blockchain::get_outs(const COMMAND_RPC_GET_OUTPUTS_BIN::request& req, COMMA
res.outs.clear();
res.outs.reserve(req.outputs.size());
try
{
for (const auto &i: req.outputs)
{
// get tx_hash, tx_out_index from DB
@ -1951,6 +1953,11 @@ bool Blockchain::get_outs(const COMMAND_RPC_GET_OUTPUTS_BIN::request& req, COMMA
res.outs.push_back({od.pubkey, od.commitment, unlocked, od.height, toi.first});
}
}
catch (const std::exception &e)
{
return false;
}
return true;
}
//------------------------------------------------------------------