aboutsummaryrefslogtreecommitdiff
path: root/src/crypto
diff options
context:
space:
mode:
authorluigi1111 <luigi1111w@gmail.com>2023-01-11 12:27:40 -0500
committerluigi1111 <luigi1111w@gmail.com>2023-01-11 12:27:40 -0500
commit50aa0e8b7f11680be3954c176f2daa9ccf77b7dd (patch)
tree3dcc52e17e314a15cc4c3f1b84a39fd5f9c2cb3b /src/crypto
parentMerge pull request #8686 (diff)
parentCache successful `verRctNonSemanticsSimple` calls (diff)
downloadmonero-50aa0e8b7f11680be3954c176f2daa9ccf77b7dd.tar.xz
Merge pull request #8675
1a568de 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 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;