You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When testing cw3-flex, I found a few issues in the spec, where it assumes the state of the contract (current group) is equivalent to the state of the proposal. But for dynamic groups, we need a few more queries to get all relevant data:
QueryMsg::Proposal/ListProposal/ReverseProposal - include threshold here - the total weight can be different than that returned by QueryMsg::Threshold
QueryMsg::Vote returns Option<Vote> including the yes/no/abstain/veto given. However, to display this correctly we need to know the voting weight of the given voter at the time it was recorded (which can be different than current weight). VoteResponse needed the weight field from VoteInfo.
The text was updated successfully, but these errors were encountered:
When testing cw3-flex, I found a few issues in the spec, where it assumes the state of the contract (current group) is equivalent to the state of the proposal. But for dynamic groups, we need a few more queries to get all relevant data:
QueryMsg::Proposal/ListProposal/ReverseProposal
- include threshold here - the total weight can be different than that returned byQueryMsg::Threshold
QueryMsg::Vote
returnsOption<Vote>
including the yes/no/abstain/veto given. However, to display this correctly we need to know the voting weight of the given voter at the time it was recorded (which can be different than current weight).VoteResponse
needed the weight field fromVoteInfo
.The text was updated successfully, but these errors were encountered: