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/cryptonote_core | |
| parent | f73a2b15875e948090ce607095ae93e3a06bed26 (diff) | |
| parent | 29208a33cb6a1bb20d90a390eef4629a46aec886 (diff) | |
| download | monzero-core-c48f572e46cb7802fbb02ada94f88a69f217bc95.tar.gz monzero-core-c48f572e46cb7802fbb02ada94f88a69f217bc95.tar.xz monzero-core-c48f572e46cb7802fbb02ada94f88a69f217bc95.zip | |
Merge pull request #8676
29208a3 Cache successful erRctNonSemanticsSimple calls (SChernykh)
Diffstat (limited to 'src/cryptonote_core')
| -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; |
