Skip to content
This repository was archived by the owner on Nov 15, 2023. It is now read-only.
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
cargo fmt
Signed-off-by: koushiro <[email protected]>
  • Loading branch information
koushiro committed May 13, 2022
commit 3a7acb47e3d24fa8b4ecc75e664d46631deb927f
6 changes: 3 additions & 3 deletions frame/vesting/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ pub mod weights;

use codec::{Decode, Encode, MaxEncodedLen};
use frame_support::{
dispatch::{DispatchError, DispatchResult},
ensure,
dispatch::{DispatchResult, DispatchError},
storage::bounded_vec::BoundedVec,
traits::{
Currency, ExistenceRequirement, Get, LockIdentifier, LockableCurrency, VestingSchedule,
Expand All @@ -74,7 +74,7 @@ use sp_runtime::{
},
RuntimeDebug,
};
use sp_std::{fmt::Debug, prelude::*, marker::PhantomData};
use sp_std::{fmt::Debug, marker::PhantomData, prelude::*};

pub use pallet::*;
pub use vesting_info::*;
Expand Down Expand Up @@ -148,8 +148,8 @@ impl<T: Config> Get<u32> for MaxVestingSchedulesGet<T> {
#[frame_support::pallet]
pub mod pallet {
use super::*;
use frame_system::pallet_prelude::*;
use frame_support::pallet_prelude::*;
use frame_system::pallet_prelude::*;

#[pallet::config]
pub trait Config: frame_system::Config {
Expand Down