diff --git a/contracts/delegation/dao-vote-delegation/src/helpers.rs b/contracts/delegation/dao-vote-delegation/src/helpers.rs index 63ae3bb35..97c751503 100644 --- a/contracts/delegation/dao-vote-delegation/src/helpers.rs +++ b/contracts/delegation/dao-vote-delegation/src/helpers.rs @@ -43,9 +43,8 @@ pub fn get_udvp( height: u64, ) -> StdResult { // if no unvoted delegated VP exists for the proposal, use the delegate's - // total delegated VP at that height. UNVOTED_DELEGATED_VP gets set when the - // delegate or one of their delegators casts a vote. if empty, none of them - // have voted yet. + // total delegated VP at that height. UNVOTED_DELEGATED_VP gets set when one + // of their delegators casts a vote. if empty, none of them have voted yet. match UNVOTED_DELEGATED_VP.may_load(deps.storage, (delegate, proposal_module, proposal_id))? { Some(vp) => Ok(vp), None => Ok(DELEGATED_VP