From cc8ff1d5a355f7cb9036a9c35b5107c8326d013d Mon Sep 17 00:00:00 2001 From: sowle Date: Fri, 1 Aug 2025 04:26:08 +0300 Subject: [PATCH] minor fix (presumable, not worthy but anyway) --- tests/crypto/crypto.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/crypto/crypto.cpp b/tests/crypto/crypto.cpp index cbc5879c..381960a5 100644 --- a/tests/crypto/crypto.cpp +++ b/tests/crypto/crypto.cpp @@ -11,7 +11,7 @@ bool check_scalar(const crypto::ec_scalar &scalar) { } void random_scalar(crypto::ec_scalar &res) { - crypto::random_scalar(res); + crypto::random_scalar_no_lock(res); } void hash_to_scalar(const void *data, std::size_t length, crypto::ec_scalar &res) {