From e0deaa55399851e2257430c55573e75e502b7d72 Mon Sep 17 00:00:00 2001 From: Luke Parker Date: Fri, 6 Jan 2023 01:35:02 -0500 Subject: [PATCH] fmt/clippy from last commit --- substrate/runtime/src/lib.rs | 1 - substrate/serai/primitives/src/amount.rs | 4 +++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/substrate/runtime/src/lib.rs b/substrate/runtime/src/lib.rs index 3140fc03..3e39aba6 100644 --- a/substrate/runtime/src/lib.rs +++ b/substrate/runtime/src/lib.rs @@ -23,7 +23,6 @@ use frame_support::{ constants::{RocksDbWeight, WEIGHT_REF_TIME_PER_SECOND}, IdentityFee, Weight, }, - dispatch::DispatchClass, parameter_types, construct_runtime, }; pub use frame_system::Call as SystemCall; diff --git a/substrate/serai/primitives/src/amount.rs b/substrate/serai/primitives/src/amount.rs index e2d3594f..e125e339 100644 --- a/substrate/serai/primitives/src/amount.rs +++ b/substrate/serai/primitives/src/amount.rs @@ -1,4 +1,6 @@ -use core::{ops::{Add, Mul}}; +use core::{ + ops::{Add, Mul}, +}; use scale::{Encode, Decode, MaxEncodedLen}; use scale_info::TypeInfo;