diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-10-27 11:14:52 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-02-12 12:16:17 +0000 |
commit | db1e0a5323aa69b446be8dda342ba884c798eb03 (patch) | |
tree | 523193186be5eeaddbd57cfb630a43d909140a26 | |
parent | blockchain: include number of discarded blocks in --reorg-notify (diff) | |
download | monero-db1e0a5323aa69b446be8dda342ba884c798eb03.tar.xz |
core: fix unmixable special case allowing ring size below 11
-rw-r--r-- | src/cryptonote_core/blockchain.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cryptonote_core/blockchain.cpp b/src/cryptonote_core/blockchain.cpp index 3a4b7f514..aaefe6a98 100644 --- a/src/cryptonote_core/blockchain.cpp +++ b/src/cryptonote_core/blockchain.cpp @@ -2553,7 +2553,7 @@ bool Blockchain::check_tx_inputs(transaction& tx, tx_verification_context &tvc, } } - if (hf_version >= HF_VERSION_MIN_MIXIN_10 && mixin != 10) + if (((hf_version == HF_VERSION_MIN_MIXIN_10 || hf_version == HF_VERSION_MIN_MIXIN_10+1) && mixin != 10) || (hf_version >= HF_VERSION_MIN_MIXIN_10+2 && mixin > 10)) { MERROR_VER("Tx " << get_transaction_hash(tx) << " has invalid ring size (" << (mixin + 1) << "), it should be 11"); tvc.m_low_mixin = true; |