Dont crash when get_output_keys throws

Its not crytical. Just skip the tx.
https://github.com/moneroexamples/openmonero/issues/132
use_xmregcore
moneroexamples 5 years ago
parent a59a2743ae
commit e34fee1068

@ -348,7 +348,7 @@ CurrentBlockchainStatus::get_output_keys(
absolute_offsets, outputs);
return true;
}
catch (const OUTPUT_DNE& e)
catch (std::exception const& e)
{
OMERROR << "get_output_keys: " << e.what();
}

Loading…
Cancel
Save