rule drafts
This commit is contained in:
committed by
Aleksander Kryukov
parent
a0cb8cd446
commit
ea6baf2220
@ -15,12 +15,12 @@ contract GovernorHarness is Governor {
|
||||
}
|
||||
|
||||
mapping (uint256 => bool) __quoromReached;
|
||||
function _quorumReached(uint256 proposalId) internal view override virtual returns (bool) {
|
||||
function _quorumReached(uint256 proposalId) public view override virtual returns (bool) {
|
||||
return __quoromReached[proposalId];
|
||||
}
|
||||
|
||||
mapping (uint256 => bool) __voteSucceeded;
|
||||
function _voteSucceeded(uint256 proposalId) internal view override virtual returns (bool) {
|
||||
function _voteSucceeded(uint256 proposalId) public view override virtual returns (bool) {
|
||||
return __voteSucceeded[proposalId];
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user