From e9bb5e737a81e3063c9472c1cd26d77898dce0ae Mon Sep 17 00:00:00 2001 From: kostekIV <27210860+kostekIV@users.noreply.github.com> Date: Wed, 14 Jun 2023 18:44:47 +0200 Subject: [PATCH] Expose ExtraFlags struct (#14376) --- substrate/frame/balances/src/lib.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/substrate/frame/balances/src/lib.rs b/substrate/frame/balances/src/lib.rs index 8d68f693b2..33a336e7c9 100644 --- a/substrate/frame/balances/src/lib.rs +++ b/substrate/frame/balances/src/lib.rs @@ -193,7 +193,9 @@ use sp_runtime::{ ArithmeticError, DispatchError, FixedPointOperand, Perbill, RuntimeDebug, TokenError, }; use sp_std::{cmp, fmt::Debug, mem, prelude::*, result}; -pub use types::{AccountData, BalanceLock, DustCleaner, IdAmount, Reasons, ReserveData}; +pub use types::{ + AccountData, BalanceLock, DustCleaner, ExtraFlags, IdAmount, Reasons, ReserveData, +}; pub use weights::WeightInfo; pub use pallet::*;