aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorluigi1111 <luigi1111w@gmail.com>2019-07-24 14:43:00 -0500
committerluigi1111 <luigi1111w@gmail.com>2019-07-24 14:43:00 -0500
commit8adde33e01e76ae929cba7f03ac06fc4eed1f896 (patch)
tree2285bab03ab025ebb3c4c59cdd7bea5b8f6e1213
parentMerge pull request #5627 (diff)
parenttx_sanity_check: don't print an error when not enough outs to check (diff)
downloadmonero-8adde33e01e76ae929cba7f03ac06fc4eed1f896.tar.xz
Merge pull request #5635
03aa14e tx_sanity_check: don't print an error when not enough outs to check (monermooo-monero)
-rw-r--r--src/cryptonote_core/tx_sanity_check.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cryptonote_core/tx_sanity_check.cpp b/src/cryptonote_core/tx_sanity_check.cpp
index 36be91f2c..e95350f76 100644
--- a/src/cryptonote_core/tx_sanity_check.cpp
+++ b/src/cryptonote_core/tx_sanity_check.cpp
@@ -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;
}