diff options
author | luigi1111 <luigi1111w@gmail.com> | 2023-01-11 12:27:40 -0500 |
---|---|---|
committer | luigi1111 <luigi1111w@gmail.com> | 2023-01-11 12:27:40 -0500 |
commit | 50aa0e8b7f11680be3954c176f2daa9ccf77b7dd (patch) | |
tree | 3dcc52e17e314a15cc4c3f1b84a39fd5f9c2cb3b /src/crypto | |
parent | Merge pull request #8686 (diff) | |
parent | Cache successful `verRctNonSemanticsSimple` calls (diff) | |
download | monero-50aa0e8b7f11680be3954c176f2daa9ccf77b7dd.tar.xz |
Merge pull request #8675
1a568de Cache successful erRctNonSemanticsSimple calls (SChernykh)
Diffstat (limited to '')
-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 b1903cf6c..1baa6bff9 100644 --- a/src/cryptonote_core/blockchain.cpp +++ b/src/cryptonote_core/blockchain.cpp @@ -3631,7 +3631,7 @@ bool Blockchain::check_tx_inputs(transaction& tx, tx_verification_context &tvc, } } - if (!rct::verRctNonSemanticsSimple(rv)) + if (!rct::verRctNonSemanticsSimpleCached(rv)) { MERROR_VER("Failed to check ringct signatures!"); return false; |