Skip to content

Commit

Permalink
Fix merge error
Browse files Browse the repository at this point in the history
  • Loading branch information
iamyulong committed Nov 15, 2024
1 parent c225c7a commit 640cc0f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions radix-engine/src/vm/wasm/wasmi.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1623,15 +1623,15 @@ impl WasmiModule {
message_len: u32,
signature_ptr: u32,
signature_len: u32|
-> Result<u64, Trap> {
-> Result<u64, Error> {
secp256k1_ecdsa_verify_and_key_recover_uncompressed(
caller,
message_ptr,
message_len,
signature_ptr,
signature_len,
)
.map_err(|e| e.into())
.map_err(|e| Error::host(e))
},
);

Expand Down

0 comments on commit 640cc0f

Please sign in to comment.