This commit is contained in:
Demi M. Obenour
2020-05-28 12:34:08 -04:00
parent 7868f2c3f4
commit c4942c45a8
2 changed files with 38 additions and 9 deletions
+17 -4
View File
@@ -16,11 +16,21 @@
//! Implements support for the pallet_balances module.
use crate::frame::system::{System, SystemEventsDecoder};
use codec::{Decode, Encode};
use crate::frame::system::{
System,
SystemEventsDecoder,
};
use codec::{
Decode,
Encode,
};
use core::marker::PhantomData;
use frame_support::Parameter;
use sp_runtime::traits::{AtLeast32Bit, MaybeSerialize, Member};
use sp_runtime::traits::{
AtLeast32Bit,
MaybeSerialize,
Member,
};
use std::fmt::Debug;
/// The subset of the `pallet_balances::Trait` that a client must implement.
@@ -100,7 +110,10 @@ pub struct TransferEvent<T: Balances> {
mod tests {
use super::*;
use crate::{
system::{AccountStore, AccountStoreExt},
system::{
AccountStore,
AccountStoreExt,
},
tests::test_client,
};
use sp_keyring::AccountKeyring;