Skip to content

Commit

Permalink
Clean comment
Browse files Browse the repository at this point in the history
  • Loading branch information
shargon committed Jan 24, 2025
1 parent 0b4f063 commit 1cfbfa5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Neo/SmartContract/Native/CryptoLib.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ internal CryptoLib() : base() { }
/// </summary>
/// <param name="message">The original message that was signed.</param>
/// <param name="signature">The 65-byte signature in format: r[32] + s[32] + v[1]. 64-bytes for eip-2098, where v must be 27 or 28.</param>
/// <param name="hashAlgorithm">The hash algorithm to be used (SHA256 or Keccak256).</param>
/// <param name="hashAlgorithm">The hash algorithm to be used hash the message.</param>
/// <returns>The recovered public key in compressed format, or null if recovery fails.</returns>
[ContractMethod(Hardfork.HF_Echidna, CpuFee = 1 << 10, Name = "recoverSecp256K1")]
public static byte[] RecoverSecp256K1(byte[] message, byte[] signature, HashAlgorithm hashAlgorithm)
Expand Down

0 comments on commit 1cfbfa5

Please sign in to comment.