You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description:
In the claim function of the ClaimContract, there is an incorrect comment for the _pubKeyY parameter. The comment incorrectly states "ECDSA public key X coordinate" instead of "Y coordinate".
Recommendation:
Correct the comment for the _pubKeyY parameter:
/// @param _pubKeyX ECDSA public key X coordinate
/// @param _pubKeyY ECDSA public key Y coordinate // Corrected comment
function claim(
// ... other parameters
bytes32 _pubKeyX,
bytes32 _pubKeyY,
// ... remaining parameters
) external {
// Function body
}
The text was updated successfully, but these errors were encountered:
Description:
In the
claim
function of the ClaimContract, there is an incorrect comment for the_pubKeyY
parameter. The comment incorrectly states "ECDSA public key X coordinate" instead of "Y coordinate".Recommendation:
Correct the comment for the
_pubKeyY
parameter:The text was updated successfully, but these errors were encountered: