From 576707d95378363d6927c1dc953c3cbad41f79a4 Mon Sep 17 00:00:00 2001 From: sifnoc Date: Mon, 26 Aug 2024 18:44:52 +0900 Subject: [PATCH] fix typo --- contracts/src/Summa.sol | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contracts/src/Summa.sol b/contracts/src/Summa.sol index c319762f..085d8790 100644 --- a/contracts/src/Summa.sol +++ b/contracts/src/Summa.sol @@ -137,8 +137,8 @@ contract Summa is Ownable { * @param numberOfCurrencies The number of cryptocurrencies whose polynomials are committed in the proof * @return isValid True if the number of permutations in the verifying key corresponds to the number of cryptocurrencies * - * WARNING: The permutation length may not be correctly calculated by the method 'calculatePermutationLength' if the prover - * deliberately tries to deceive the process. This issue cannot be resolved even if we change the approach to rely on user input + * WARNING: The permutation length may not be correctly calculated by this method if the prover deliberately + * tries to deceive the process. This issue cannot be resolved even if we change the approach to rely on user input * for the length instead of calculating it within the method. The ultimate solution is to implement a validation process for the * verifying key contract that can be performed by the user themselves. This issue will be addressed in the following: * https://github.com/summa-dev/summa-solvency/issues/299