aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authormoneromooo-monero <moneromooo-monero@users.noreply.github.com>2019-06-12 12:05:40 +0000
committermoneromooo-monero <moneromooo-monero@users.noreply.github.com>2019-06-12 12:06:14 +0000
commit03aa14ec87f599f3b34b09b6ab96443109c0b768 (patch)
tree40cb861a110562e89a7b886f42a133651e41b9c1 /src
parentMerge pull request #5619 (diff)
downloadmonero-03aa14ec87f599f3b34b09b6ab96443109c0b768.tar.xz
tx_sanity_check: don't print an error when not enough outs to check
Diffstat (limited to 'src')
-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 10198a3d3..5bb723814 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;
}