mirror of
https://github.com/monero-project/monero.git
synced 2024-10-01 11:49:47 -04:00
tx_sanity_check: relax uniqueness check a bit
It triggers easily on testnet
This commit is contained in:
parent
b386ae5725
commit
4be18df32a
@ -34,7 +34,7 @@
|
||||
#include "tx_sanity_check.h"
|
||||
|
||||
#undef MONERO_DEFAULT_LOG_CATEGORY
|
||||
#define MONERO_DEFAULT_LOG_CATEGORY "txsanity"
|
||||
#define MONERO_DEFAULT_LOG_CATEGORY "verify"
|
||||
|
||||
namespace cryptonote
|
||||
{
|
||||
@ -80,7 +80,7 @@ bool tx_sanity_check(Blockchain &blockchain, const cryptonote::blobdata &tx_blob
|
||||
if (n_available < 10000)
|
||||
return true;
|
||||
|
||||
if (rct_indices.size() < n_indices * 9 / 10)
|
||||
if (rct_indices.size() < n_indices * 8 / 10)
|
||||
{
|
||||
MERROR("unique indices is only " << rct_indices.size() << "/" << n_indices);
|
||||
return false;
|
||||
|
Loading…
Reference in New Issue
Block a user