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

Commit

Permalink
make inner field of IdentityFields pub (#10773)
Browse files Browse the repository at this point in the history
  • Loading branch information
nanocryk authored Feb 7, 2022
1 parent dc4cf6c commit 0e9b6e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frame/identity/src/types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ pub enum IdentityField {

/// Wrapper type for `BitFlags<IdentityField>` that implements `Codec`.
#[derive(Clone, Copy, PartialEq, Default, RuntimeDebug)]
pub struct IdentityFields(pub(crate) BitFlags<IdentityField>);
pub struct IdentityFields(pub BitFlags<IdentityField>);

impl MaxEncodedLen for IdentityFields {
fn max_encoded_len() -> usize {
Expand Down

0 comments on commit 0e9b6e4

Please sign in to comment.