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
In the current implementation, estimating the voting power for each voting strategy of a space before casting a vote is challenging. The issue lies with the getVotingPower() method in the voting strategy contracts, which is not a view function and can perform state changes due to the potential need for resolving the timestamp, in CompVotingStrategy and OZVotesVotingStrategy.
This makes it hard for the user interface to call the function for estimation purposes without sending a transaction.
The text was updated successfully, but these errors were encountered:
In the current implementation, estimating the voting power for each voting strategy of a space before casting a vote is challenging. The issue lies with the getVotingPower() method in the voting strategy contracts, which is not a view function and can perform state changes due to the potential need for resolving the timestamp, in CompVotingStrategy and OZVotesVotingStrategy.
This makes it hard for the user interface to call the function for estimation purposes without sending a transaction.
The text was updated successfully, but these errors were encountered: