Skip to content

Commit

Permalink
Merge pull request #100 from neutron-org/fix/tokenfactory_query_field…
Browse files Browse the repository at this point in the history
…_visibility

fix: tokenfactory query field visibility
  • Loading branch information
pr0n00gler authored Jul 6, 2023
2 parents 3c540ce + fae7620 commit 43bb4d2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/neutron-sdk/src/query/token_factory.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ use serde::{Deserialize, Serialize};
#[derive(Serialize, Deserialize, Clone, Debug, PartialEq, Eq, JsonSchema)]
#[serde(rename_all = "snake_case")]
pub struct FullDenomResponse {
denom: String,
pub denom: String,
}

#[derive(Serialize, Deserialize, Clone, Debug, PartialEq, Eq, JsonSchema)]
#[serde(rename_all = "snake_case")]
pub struct DenomAdminResponse {
admin: String,
pub admin: String,
}

pub fn query_full_denom(
Expand Down

0 comments on commit 43bb4d2

Please sign in to comment.