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
A question came in the forum regarding customizing the quorum of a Governor so that it takes the amount of delegated votes into account. This use case is already possible by tracking the total of delegate votes through both the _transferVotingUnits and _delegate functions but it's unnecessarily expensive and it splits the logic in two when it can already be tracked by overriding _moveDelegateVotes.
🧐 Motivation
A question came in the forum regarding customizing the quorum of a Governor so that it takes the amount of delegated votes into account. This use case is already possible by tracking the total of delegate votes through both the
_transferVotingUnits
and_delegate
functions but it's unnecessarily expensive and it splits the logic in two when it can already be tracked by overriding_moveDelegateVotes
.Reference
📝 Details
Making
_moveDelegatesVotes
internal enables overriding.The text was updated successfully, but these errors were encountered: