FixedERC20VotesIssue

This commit is contained in:
Aleksander Kryukov
2021-11-17 13:33:43 +02:00
parent 44113d58f5
commit a33b9b2bb0
9 changed files with 34 additions and 24 deletions

View File

@ -22,6 +22,14 @@ methods {
// function summarization
hashProposal(address[], uint256[], bytes[], bytes32) => CONSTANT
proposalThreshold() returns uint256 envfree
getVotes(address, uint256) returns uint256 envfree => DISPATCHER(true)
//getVotes(address, uint256) => DISPATCHER(true)
getPastTotalSupply(uint256) returns uint256 envfree => DISPATCHER(true)
//getPastTotalSupply(uint256) => DISPATCHER(true)
getPastVotes(address, uint256) returns uint256 envfree => DISPATCHER(true)
}
//////////////////////////////////////////////////////////////////////////////
@ -91,7 +99,6 @@ invariant proposalInitiated(uint256 pId)
}}*/
/*
* A proposal cannot end unless it started.
*/