From 2d0277bea7ba5796733b1db4db484dc73f30e23c Mon Sep 17 00:00:00 2001 From: Harald Heckmann Date: Sat, 6 Apr 2024 05:01:09 +0530 Subject: [PATCH] Remove unused DealWithCampaignFees struct (#1305) Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> --- runtime/common/src/fees.rs | 9 --------- 1 file changed, 9 deletions(-) diff --git a/runtime/common/src/fees.rs b/runtime/common/src/fees.rs index 22562d1c8..6facbdbb1 100644 --- a/runtime/common/src/fees.rs +++ b/runtime/common/src/fees.rs @@ -57,15 +57,6 @@ macro_rules! impl_fee_types { debug_assert!(res.is_ok()); } } - - /// Disregards the fees. - pub struct DealWithCampaignFees; - impl OnUnbalanced> for DealWithCampaignFees { - fn on_unbalanced(_fees_and_tips: CreditOf) { - // Handled by type OnDropCredit - return; - } - } }; }