Rename builtin as 'verify_ed25519_signature'

It's best to keep builtin as-close-as possible to their standard name
  because they're hard to document. We can then leverage the prelude and
  the standard lib for convenient names.
This commit is contained in:
KtorZ 2022-12-17 15:28:08 +01:00 committed by Lucas
parent a51808d549
commit 529b3e87ff
1 changed files with 1 additions and 1 deletions

View File

@ -354,7 +354,7 @@ impl DefaultFunction {
Sha2_256 => "sha2_256",
Sha3_256 => "sha3_256",
Blake2b_256 => "blake2b_256",
VerifyEd25519Signature => "verify_signature",
VerifyEd25519Signature => "verify_ed25519_signature",
VerifyEcdsaSecp256k1Signature => "verify_ecdsa_secp256k1_signature",
VerifySchnorrSecp256k1Signature => "verify_schnorr_secp256k1_signature",
AppendString => "append_string",