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;