Skip to content

Commit

Permalink
make some pallet-assets items public for foreign assets migration
Browse files Browse the repository at this point in the history
  • Loading branch information
librelois authored and gonzamontiel committed Aug 14, 2024
1 parent e61261e commit cb5a95f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion substrate/frame/assets/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -419,7 +419,7 @@ pub mod pallet {

#[pallet::storage]
/// The holdings of a specific account for a specific asset.
pub(super) type Account<T: Config<I>, I: 'static = ()> = StorageDoubleMap<
pub type Account<T: Config<I>, I: 'static = ()> = StorageDoubleMap<
_,
Blake2_128Concat,
T::AssetId,
Expand Down
2 changes: 1 addition & 1 deletion substrate/frame/assets/src/types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ impl AccountStatus {
#[derive(Clone, Encode, Decode, Eq, PartialEq, RuntimeDebug, MaxEncodedLen, TypeInfo)]
pub struct AssetAccount<Balance, DepositBalance, Extra, AccountId> {
/// The balance.
pub(super) balance: Balance,
pub balance: Balance,
/// The status of the account.
pub(super) status: AccountStatus,
/// The reason for the existence of the account.
Expand Down

0 comments on commit cb5a95f

Please sign in to comment.