diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2019-08-14 15:26:55 -0500 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2019-08-14 15:26:55 -0500 |
| commit | 2258551ef999c016b4d7404eb81598ed43e84410 (patch) | |
| tree | 08bbba8e340849f2bc286fe76dc09deaabb3daa1 /src/cryptonote_core/blockchain.cpp | |
| parent | dd3b5ecb98aea5440da6059abc7060e1c45c7621 (diff) | |
| parent | df83ed74e487d6f828164bb9652681801abb439e (diff) | |
| download | monzero-core-2258551ef999c016b4d7404eb81598ed43e84410.tar.gz monzero-core-2258551ef999c016b4d7404eb81598ed43e84410.tar.xz monzero-core-2258551ef999c016b4d7404eb81598ed43e84410.zip | |
Merge pull request #5487
df83ed7 consensus: from v12, enforce >= 2 outputs (moneromooo-monero)
Diffstat (limited to 'src/cryptonote_core/blockchain.cpp')
| -rw-r--r-- | src/cryptonote_core/blockchain.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/cryptonote_core/blockchain.cpp b/src/cryptonote_core/blockchain.cpp index 31e2ac136..7d173b2ff 100644 --- a/src/cryptonote_core/blockchain.cpp +++ b/src/cryptonote_core/blockchain.cpp @@ -2840,6 +2840,19 @@ bool Blockchain::check_tx_inputs(transaction& tx, tx_verification_context &tvc, const uint8_t hf_version = m_hardfork->get_current_version(); + if (hf_version >= HF_VERSION_MIN_2_OUTPUTS) + { + if (tx.version >= 2) + { + if (tx.vout.size() < 2) + { + MERROR_VER("Tx " << get_transaction_hash(tx) << " has fewer than two outputs"); + tvc.m_too_few_outputs = true; + return false; + } + } + } + // from hard fork 2, we require mixin at least 2 unless one output cannot mix with 2 others // if one output cannot mix with 2 others, we accept at most 1 output that can mix if (hf_version >= 2) |
