Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

Commit

Permalink
expose the fields of Dust type to public (#14388)
Browse files Browse the repository at this point in the history
  • Loading branch information
wangjj9219 authored and bkchr committed Jun 22, 2023
1 parent 9326fee commit ff24c60
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion frame/support/src/traits/tokens/fungible/regular.rs
Expand Up @@ -108,7 +108,7 @@ pub trait Inspect<AccountId>: Sized {

/// Special dust type which can be type-safely converted into a `Credit`.
#[must_use]
pub struct Dust<A, T: Inspect<A>>(pub(crate) T::Balance);
pub struct Dust<A, T: Inspect<A>>(pub T::Balance);

impl<A, T: Balanced<A>> Dust<A, T> {
/// Convert `Dust` into an instance of `Credit`.
Expand Down
2 changes: 1 addition & 1 deletion frame/support/src/traits/tokens/fungibles/regular.rs
Expand Up @@ -121,7 +121,7 @@ pub trait Inspect<AccountId>: Sized {

/// Special dust type which can be type-safely converted into a `Credit`.
#[must_use]
pub struct Dust<A, T: Unbalanced<A>>(pub(crate) T::AssetId, pub(crate) T::Balance);
pub struct Dust<A, T: Unbalanced<A>>(pub T::AssetId, pub T::Balance);

impl<A, T: Balanced<A>> Dust<A, T> {
/// Convert `Dust` into an instance of `Credit`.
Expand Down

0 comments on commit ff24c60

Please sign in to comment.