diff options
author | luigi1111 <luigi1111w@gmail.com> | 2023-01-11 12:28:08 -0500 |
---|---|---|
committer | luigi1111 <luigi1111w@gmail.com> | 2023-01-11 12:28:08 -0500 |
commit | c48f572e46cb7802fbb02ada94f88a69f217bc95 (patch) | |
tree | 24e3be3d1950b7d129b47dde0676b086c71b77b3 /src/crypto | |
parent | Merge pull request #8683 (diff) | |
parent | Cache successful `verRctNonSemanticsSimple` calls (diff) | |
download | monero-c48f572e46cb7802fbb02ada94f88a69f217bc95.tar.xz |
Merge pull request #8676
29208a3 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 1367eabd8..fed4ebb5b 100644 --- a/src/cryptonote_core/blockchain.cpp +++ b/src/cryptonote_core/blockchain.cpp @@ -3632,7 +3632,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; |