Skip to content

Commit

Permalink
Fix compiler warning
Browse files Browse the repository at this point in the history
  • Loading branch information
chipshort committed Jul 17, 2023
1 parent 7ef4f87 commit 100f993
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions contracts/cyberpunk/src/msg.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
use cosmwasm_schema::{cw_serde, QueryResponses};
use cosmwasm_std::DenomMetadata;

#[cw_serde]
pub enum ExecuteMsg {
Expand Down Expand Up @@ -39,10 +38,10 @@ pub enum QueryMsg {
MirrorEnv {},

/// Queries `AllDenomMetadata` from the bank module repeatedly and returns all entries
#[returns(Vec<DenomMetadata>)]
#[returns(Vec<cosmwasm_std::DenomMetadata>)]
Denoms {},

/// Queries `DenomMetadata` from the bank module and returns the result
#[returns(DenomMetadata)]
#[returns(cosmwasm_std::DenomMetadata)]
Denom { denom: String },
}

0 comments on commit 100f993

Please sign in to comment.