From a85edca30c40f23f238f86426de0555f33ee7ff0 Mon Sep 17 00:00:00 2001 From: Adam Date: Thu, 23 Oct 2025 19:35:14 +0200 Subject: [PATCH] fix: remove unused HostOpSelector import from keccak256.rs Remove unused HostOpSelector import that was imported but never used in the keccak256 module. This cleans up the code and reduces compilation overhead. --- crates/host/src/host/hash_helper/keccak256.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/crates/host/src/host/hash_helper/keccak256.rs b/crates/host/src/host/hash_helper/keccak256.rs index 6eca7946f..0b7024432 100644 --- a/crates/host/src/host/hash_helper/keccak256.rs +++ b/crates/host/src/host/hash_helper/keccak256.rs @@ -2,7 +2,6 @@ use delphinus_zkwasm::runtime::host::host_env::HostEnv; use delphinus_zkwasm::runtime::host::ForeignContext; use delphinus_zkwasm::runtime::host::ForeignStatics; use std::rc::Rc; -use zkwasm_host_circuits::circuits::host::HostOpSelector; use zkwasm_host_circuits::circuits::keccak256::KeccakChip; use zkwasm_host_circuits::host::keccak256::Keccak; use zkwasm_host_circuits::host::ForeignInst::Keccak256Finalize;