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
Users can allocate their voting power to different initiatives. For each allocation two values are stored: allocated LQTY and the user's offset. Function allocateLQTY() rounds down when computing the offset that should be added to an initiative:
This means that, in particular, when the user allocates all of his LQTY to many initiatives, he could be left with 0 unallocatedLQTY and non-zero unallocatedOffset.
The rounding error is accounted in favor of an initiative if user allocates YES votes (against initiative if user allocates NO votes).
The text was updated successfully, but these errors were encountered:
Users can allocate their voting power to different initiatives. For each allocation two values are stored: allocated LQTY and the user's offset. Function
allocateLQTY()
rounds down when computing the offset that should be added to an initiative:This means that, in particular, when the user allocates all of his LQTY to many initiatives, he could be left with 0
unallocatedLQTY
and non-zerounallocatedOffset
.The rounding error is accounted in favor of an initiative if user allocates YES votes (against initiative if user allocates NO votes).
The text was updated successfully, but these errors were encountered: