Skip to content

Commit

Permalink
Make DenomUnit struct members public (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
NoahSaso authored Jul 24, 2023
1 parent 775cd5a commit 217c91b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/bindings/src/types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ pub struct DenomUnit {
/// 1 denom = 1^exponent base_denom
/// (e.g. with a base_denom of uatom, one can create a DenomUnit of 'atom' with
/// exponent = 6, thus: 1 atom = 10^6 uatom).
exponent: u32,
pub exponent: u32,
/// aliases is a list of string aliases for the given denom
aliases: Vec<String>,
pub aliases: Vec<String>,
}

/// This maps to osmosis.tokenfactory.v1beta1.Params protobuf struct
Expand Down

0 comments on commit 217c91b

Please sign in to comment.