Skip to content

Commit

Permalink
Fix abi interface input params order (#4561)
Browse files Browse the repository at this point in the history
  • Loading branch information
Eitu33 authored Nov 27, 2023
1 parent 391b9ae commit 8b1e610
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion massa-execution-worker/src/interface_impl.rs
Original file line number Diff line number Diff line change
Expand Up @@ -877,8 +877,8 @@ impl Interface for InterfaceImpl {
/// Length: 64 bytes
fn evm_signature_verify(
&self,
signature_: &[u8],
message_: &[u8],
signature_: &[u8],
public_key_: &[u8],
) -> Result<bool> {
// check the signature length
Expand Down

0 comments on commit 8b1e610

Please sign in to comment.