tx_sanity_check: don't print an error when not enough outs to check

This commit is contained in:
moneromooo-monero 2019-06-12 12:05:40 +00:00 committed by wowario
parent 517d5e6915
commit 10593e20a5
No known key found for this signature in database
GPG Key ID: 24DCBE762DE9C111
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@ bool tx_sanity_check(Blockchain &blockchain, const cryptonote::blobdata &tx_blob
if (n_indices <= 10)
{
MERROR("n_indices is only " << n_indices);
MDEBUG("n_indices is only " << n_indices << ", not checking");
return true;
}