Skip to content

Commit bd3a7d9

Browse files
authored
cosmrs: expose base::query module and pagination types (#454)
1 parent ce00cf8 commit bd3a7d9

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

cosmrs/src/base.rs

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ mod account_id;
44
mod coin;
55
mod denom;
66

7+
/// Query support
78
pub mod query;
89

910
pub use self::{account_id::AccountId, coin::Coin, denom::Denom};

cosmrs/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ mod base;
4747
mod error;
4848

4949
pub use crate::{
50-
base::{AccountId, Amount, Coin, Denom, Gas},
50+
base::{query, AccountId, Amount, Coin, Denom, Gas},
5151
error::{Error, Result},
5252
tx::Tx,
5353
};

0 commit comments

Comments
 (0)