aboutsummaryrefslogtreecommitdiff
path: root/src/crypto
diff options
context:
space:
mode:
authorluigi1111 <luigi1111w@gmail.com>2023-01-11 12:28:08 -0500
committerluigi1111 <luigi1111w@gmail.com>2023-01-11 12:28:08 -0500
commitc48f572e46cb7802fbb02ada94f88a69f217bc95 (patch)
tree24e3be3d1950b7d129b47dde0676b086c71b77b3 /src/crypto
parentMerge pull request #8683 (diff)
parentCache successful `verRctNonSemanticsSimple` calls (diff)
downloadmonero-c48f572e46cb7802fbb02ada94f88a69f217bc95.tar.xz
Merge pull request #8676
29208a3 Cache successful erRctNonSemanticsSimple calls (SChernykh)
Diffstat (limited to '')
-rw-r--r--src/cryptonote_core/blockchain.cpp2
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;