From 900ebf65a5f128bfb5835d5706598cede379e1fb Mon Sep 17 00:00:00 2001 From: augustocollado Date: Mon, 5 Feb 2024 04:55:28 -0300 Subject: [PATCH] clippy --- runtime/dancebox/src/lib.rs | 2 +- runtime/flashbox/src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/runtime/dancebox/src/lib.rs b/runtime/dancebox/src/lib.rs index c034bda6b..25497485c 100644 --- a/runtime/dancebox/src/lib.rs +++ b/runtime/dancebox/src/lib.rs @@ -1455,7 +1455,7 @@ impl pallet_treasury::Config for Runtime { type BalanceConverter = UnityAssetBalanceConversion; type PayoutPeriod = ConstU32<0>; #[cfg(feature = "runtime-benchmarks")] - type BenchmarkHelper = BenchmarkHelper; + type BenchmarkHelper = (); } // Create the runtime by composing the FRAME pallets that were previously configured. diff --git a/runtime/flashbox/src/lib.rs b/runtime/flashbox/src/lib.rs index 4137880b6..f682ffdf7 100644 --- a/runtime/flashbox/src/lib.rs +++ b/runtime/flashbox/src/lib.rs @@ -1204,7 +1204,7 @@ impl pallet_treasury::Config for Runtime { type BalanceConverter = UnityAssetBalanceConversion; type PayoutPeriod = ConstU32<0>; #[cfg(feature = "runtime-benchmarks")] - type BenchmarkHelper = BenchmarkHelper; + type BenchmarkHelper = (); } // Create the runtime by composing the FRAME pallets that were previously configured.