Skip to content

Commit

Permalink
cosmrs: expose base::query module and pagination types (#454)
Browse files Browse the repository at this point in the history
  • Loading branch information
jstuczyn authored Feb 1, 2024
1 parent ce00cf8 commit bd3a7d9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions cosmrs/src/base.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ mod account_id;
mod coin;
mod denom;

/// Query support
pub mod query;

pub use self::{account_id::AccountId, coin::Coin, denom::Denom};
Expand Down
2 changes: 1 addition & 1 deletion cosmrs/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ mod base;
mod error;

pub use crate::{
base::{AccountId, Amount, Coin, Denom, Gas},
base::{query, AccountId, Amount, Coin, Denom, Gas},
error::{Error, Result},
tx::Tx,
};
Expand Down

0 comments on commit bd3a7d9

Please sign in to comment.