diff options
author | luigi1111 <luigi1111w@gmail.com> | 2019-07-24 14:43:00 -0500 |
---|---|---|
committer | luigi1111 <luigi1111w@gmail.com> | 2019-07-24 14:43:00 -0500 |
commit | 8adde33e01e76ae929cba7f03ac06fc4eed1f896 (patch) | |
tree | 2285bab03ab025ebb3c4c59cdd7bea5b8f6e1213 /src/cryptonote_core | |
parent | Merge pull request #5627 (diff) | |
parent | tx_sanity_check: don't print an error when not enough outs to check (diff) | |
download | monero-8adde33e01e76ae929cba7f03ac06fc4eed1f896.tar.xz |
Merge pull request #5635
03aa14e tx_sanity_check: don't print an error when not enough outs to check (monermooo-monero)
Diffstat (limited to 'src/cryptonote_core')
-rw-r--r-- | src/cryptonote_core/tx_sanity_check.cpp | 2 |
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; } |