diff options
| author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-10-19 21:10:19 +0000 |
|---|---|---|
| committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-10-19 21:11:12 +0000 |
| commit | cf75ee722a896a0fee2f5c33b2f0dbf051e66ae2 (patch) | |
| tree | 65696d9f89a7a757a2e17f02c2610c07fbc5c484 /src/cryptonote_core | |
| parent | 5c85da5a73424017ea9c340a0412f90356d77358 (diff) | |
| download | monzero-core-cf75ee722a896a0fee2f5c33b2f0dbf051e66ae2.tar.gz monzero-core-cf75ee722a896a0fee2f5c33b2f0dbf051e66ae2.tar.xz monzero-core-cf75ee722a896a0fee2f5c33b2f0dbf051e66ae2.zip | |
blockchain: move two new verification errors to the verify category
Lest we get people get scared again
Diffstat (limited to 'src/cryptonote_core')
| -rw-r--r-- | src/cryptonote_core/blockchain.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cryptonote_core/blockchain.cpp b/src/cryptonote_core/blockchain.cpp index eb869b795..fa23b6bd2 100644 --- a/src/cryptonote_core/blockchain.cpp +++ b/src/cryptonote_core/blockchain.cpp @@ -2364,7 +2364,7 @@ bool Blockchain::check_tx_outputs(const transaction& tx, tx_verification_context const bool bulletproof = rct::is_rct_bulletproof(tx.rct_signatures.type); if (bulletproof || !tx.rct_signatures.p.bulletproofs.empty()) { - MERROR("Bulletproofs are not allowed before v8"); + MERROR_VER("Bulletproofs are not allowed before v8"); tvc.m_invalid_output = true; return false; } @@ -2377,7 +2377,7 @@ bool Blockchain::check_tx_outputs(const transaction& tx, tx_verification_context const bool borromean = rct::is_rct_borromean(tx.rct_signatures.type); if (borromean) { - MERROR("Borromean range proofs are not allowed after v8"); + MERROR_VER("Borromean range proofs are not allowed after v8"); tvc.m_invalid_output = true; return false; } |
