tx_sanity_check: relax the median check a lot

we don't want to prevent bona fide txes, just obvious bad ones
This commit is contained in:
moneromooo-monero 2019-06-19 23:30:54 +00:00
parent 6335509727
commit da3e20ee01
No known key found for this signature in database
GPG Key ID: 686F07454D6CEFC3
1 changed files with 1 additions and 1 deletions

View File

@ -88,7 +88,7 @@ bool tx_sanity_check(Blockchain &blockchain, const cryptonote::blobdata &tx_blob
std::vector<uint64_t> offsets(rct_indices.begin(), rct_indices.end());
uint64_t median = epee::misc_utils::median(offsets);
if (median < n_available * 9 / 10)
if (median < n_available * 6 / 10)
{
MERROR("median is " << median << "/" << n_available);
return false;