From 4b6675c3c38ca668c2eb79018440c0e42ee6dbf8 Mon Sep 17 00:00:00 2001 From: Farhad Shabani Date: Fri, 13 Oct 2023 06:57:54 -0700 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Romain Ruetschi Signed-off-by: Farhad Shabani --- crates/ibc/clippy.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/ibc/clippy.toml b/crates/ibc/clippy.toml index 2bb474ca0..af3114623 100644 --- a/crates/ibc/clippy.toml +++ b/crates/ibc/clippy.toml @@ -1,7 +1,7 @@ disallowed-types = [ # { path = "usize", reason = "variable size" }, # cannot on now, because mocks use it and serde, even if there is no usize in type - { path = "f64", reason = "harware dependant" }, - { path = "f32", reason = "harware dependant" }, + { path = "f64", reason = "not supported in CosmWasm" }, + { path = "f32", reason = "not supported in CosmWasm" }, { path = "num_traits::float::*", reason = "harware dependant" }, ]