From 2f30d4651a269deab22149c97bfceec44bf1614b Mon Sep 17 00:00:00 2001 From: ron Date: Mon, 29 Apr 2024 14:32:22 +0800 Subject: [PATCH] Remove unused --- bridges/snowbridge/pallets/inbound-queue/src/lib.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/bridges/snowbridge/pallets/inbound-queue/src/lib.rs b/bridges/snowbridge/pallets/inbound-queue/src/lib.rs index b5fc2fe15450..4de4f5cee829 100644 --- a/bridges/snowbridge/pallets/inbound-queue/src/lib.rs +++ b/bridges/snowbridge/pallets/inbound-queue/src/lib.rs @@ -233,7 +233,6 @@ pub mod pallet { let who = ensure_signed(origin)?; ensure!(!Self::operating_mode().is_halted(), Error::::Halted); - #[cfg(not(any(feature = "std", test)))] // submit message to verifier for verification,ignore for integration tests T::Verifier::verify(&message.event_log, &message.proof) .map_err(|e| Error::::Verification(e))?;