From 13016527bdbc53d9484642d6b52430550c0efc55 Mon Sep 17 00:00:00 2001 From: Daniel Shiposha Date: Thu, 8 Sep 2022 17:11:35 +0000 Subject: [PATCH] fix: cargo fmt --- bin/node-template/runtime/src/lib.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/bin/node-template/runtime/src/lib.rs b/bin/node-template/runtime/src/lib.rs index 8cc89d6a26cd0..a7f44c57aa8cd 100644 --- a/bin/node-template/runtime/src/lib.rs +++ b/bin/node-template/runtime/src/lib.rs @@ -41,7 +41,7 @@ pub use pallet_timestamp::Call as TimestampCall; use pallet_transaction_payment::{CurrencyAdapter, Multiplier, TargetedFeeAdjustment}; #[cfg(any(feature = "std", test))] pub use sp_runtime::BuildStorage; -pub use sp_runtime::{Perbill, Permill, Perquintill, FixedPointNumber}; +pub use sp_runtime::{FixedPointNumber, Perbill, Permill, Perquintill}; /// Import the template pallet. pub use pallet_template; @@ -269,7 +269,6 @@ parameter_types! { pub type SlowAdjustingFeeUpdate = TargetedFeeAdjustment; - impl pallet_transaction_payment::Config for Runtime { type Event = Event; type OnChargeTransaction = CurrencyAdapter;