Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
chipshort committed Jul 26, 2023
1 parent 4328255 commit b1811a7
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
1 change: 0 additions & 1 deletion packages/std/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,6 @@ pub use crate::query::{
};
#[cfg(feature = "stargate")]
pub use crate::query::{ChannelResponse, IbcQuery, ListChannelsResponse, PortIdResponse};
#[cfg(feature = "cosmwasm_1_4")]
pub use crate::query::{
DecCoin, DelegationRewardsResponse, DelegationTotalRewardsResponse, DelegatorReward,
DelegatorValidatorsResponse,
Expand Down
1 change: 0 additions & 1 deletion packages/std/src/query/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ pub use bank::SupplyResponse;
pub use bank::{AllBalanceResponse, BalanceResponse, BankQuery};
#[cfg(feature = "cosmwasm_1_3")]
pub use bank::{AllDenomMetadataResponse, DenomMetadataResponse};
#[cfg(feature = "cosmwasm_1_4")]
pub use distribution::{
DecCoin, DelegationRewardsResponse, DelegationTotalRewardsResponse, DelegatorReward,
DelegatorValidatorsResponse,
Expand Down
4 changes: 2 additions & 2 deletions packages/std/src/testing/mock.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,14 +40,14 @@ use crate::traits::{Api, Querier, QuerierResult};
use crate::types::{BlockInfo, ContractInfo, Env, MessageInfo, TransactionInfo};
#[cfg(feature = "cosmwasm_1_3")]
use crate::{
query::{AllDenomMetadataResponse, DelegatorValidatorsResponse, DenomMetadataResponse},
query::{AllDenomMetadataResponse, DecCoin, DenomMetadataResponse},
PageRequest,
};
use crate::{Attribute, DenomMetadata};
#[cfg(feature = "stargate")]
use crate::{ChannelResponse, IbcQuery, ListChannelsResponse, PortIdResponse};
#[cfg(feature = "cosmwasm_1_4")]
use crate::{DecCoin, Decimal, DelegationRewardsResponse};
use crate::{Decimal, DelegationRewardsResponse, DelegatorValidatorsResponse};

use super::riffle_shuffle;

Expand Down

0 comments on commit b1811a7

Please sign in to comment.