Skip to content

Commit

Permalink
fix: SHA_COMPRESS syscall added to syscall map twice
Browse files Browse the repository at this point in the history
  • Loading branch information
Sofianel5 committed May 15, 2024
1 parent e699a98 commit bd0f83f
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion core/src/runtime/syscall.rs
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,6 @@ pub fn default_syscall_map() -> HashMap<SyscallCode, Rc<dyn Syscall>> {
SyscallCode::SECP256K1_DOUBLE,
Rc::new(WeierstrassDoubleAssignChip::<Secp256k1>::new()),
);
syscall_map.insert(SyscallCode::SHA_COMPRESS, Rc::new(ShaCompressChip::new()));
syscall_map.insert(
SyscallCode::SECP256K1_DECOMPRESS,
Rc::new(WeierstrassDecompressChip::<Secp256k1>::new()),
Expand Down

0 comments on commit bd0f83f

Please sign in to comment.