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:
parent
a51808d549
commit
529b3e87ff
|
@ -354,7 +354,7 @@ impl DefaultFunction {
|
||||||
Sha2_256 => "sha2_256",
|
Sha2_256 => "sha2_256",
|
||||||
Sha3_256 => "sha3_256",
|
Sha3_256 => "sha3_256",
|
||||||
Blake2b_256 => "blake2b_256",
|
Blake2b_256 => "blake2b_256",
|
||||||
VerifyEd25519Signature => "verify_signature",
|
VerifyEd25519Signature => "verify_ed25519_signature",
|
||||||
VerifyEcdsaSecp256k1Signature => "verify_ecdsa_secp256k1_signature",
|
VerifyEcdsaSecp256k1Signature => "verify_ecdsa_secp256k1_signature",
|
||||||
VerifySchnorrSecp256k1Signature => "verify_schnorr_secp256k1_signature",
|
VerifySchnorrSecp256k1Signature => "verify_schnorr_secp256k1_signature",
|
||||||
AppendString => "append_string",
|
AppendString => "append_string",
|
||||||
|
|
Loading…
Reference in New Issue