How does stake-weighted payout delay exactly work?
Is this right:
- If one vote is cast, the payout is after 24h
- If within 24h another vote is cast, the payout is delayed
24h * vote2 / ( vote1 + vote2 )
, where voteN is the weight of the vote - If votes continue to be cast, the payout delay is adjusted to
24h * weightOfLastVOte / sumOfWeightsOfAllVotes
each time - The payout happens when no votes are cast within the last delay.
- Voting can continue, but it starts from 0
The equation is:
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
That leaves some things unclear. What is the unit of time and does x refer to the last vote?
I'm wondering how it actually behaves. Does it mean the bigger the total score the smaller the delay added by each additional vote?
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
TimeOfVote and weight are arrays where the index, x, is the vote. SumOf means iterate over all values of x from 0 to the number of votes.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
I guess I got it wrong. That wouldn't work. After 24 votes there would only be 1h time to get a new delay.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit