Skip to content

Commit

Permalink
Merge pull request #155 from CosmWasm/random-cleanup
Browse files Browse the repository at this point in the history
Random Cleanup
  • Loading branch information
ethanfrey authored Dec 4, 2020
2 parents 56d52ac + 435b048 commit df3f2d6
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion packages/cw4/src/helpers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,6 @@ impl Cw4Contract {
querier.query(&query)
}

// TODO: implement with raw queries
/// Check if this address is a member, and if so, with which weight
pub fn is_member(
&self,
Expand Down
2 changes: 0 additions & 2 deletions packages/cw4/src/query.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,13 @@ use crate::msg::Member;
pub enum Cw4QueryMsg {
/// Return AdminResponse
Admin {},
// TODO: this also needs raw query access
/// Return TotalWeightResponse
TotalWeight {},
/// Returns MembersListResponse
ListMembers {
start_after: Option<HumanAddr>,
limit: Option<u32>,
},
// TODO: this also needs raw query access
/// Returns MemberResponse
Member { addr: HumanAddr },
}
Expand Down

0 comments on commit df3f2d6

Please sign in to comment.