update
This commit is contained in:
@ -1,6 +1,6 @@
|
||||
--- governance/Governor.sol 2023-03-07 10:48:47.730155491 +0100
|
||||
+++ governance/Governor.sol 2023-03-10 10:13:31.926616811 +0100
|
||||
@@ -216,6 +216,16 @@
|
||||
+++ governance/Governor.sol 2023-03-13 14:07:30.704202049 +0100
|
||||
@@ -216,6 +216,21 @@
|
||||
return _proposals[proposalId].proposer;
|
||||
}
|
||||
|
||||
@ -13,6 +13,11 @@
|
||||
+ function _isCanceled(uint256 proposalId) internal view returns (bool) {
|
||||
+ return _proposals[proposalId].canceled;
|
||||
+ }
|
||||
+
|
||||
+ // FV
|
||||
+ function _governanceCallLength() public view returns (uint256) {
|
||||
+ return _governanceCall.length();
|
||||
+ }
|
||||
+
|
||||
/**
|
||||
* @dev Amount of votes already cast passes the threshold limit.
|
||||
|
||||
14
certora/diff/token_ERC721_ERC721.sol.patch
Normal file
14
certora/diff/token_ERC721_ERC721.sol.patch
Normal file
@ -0,0 +1,14 @@
|
||||
--- token/ERC721/ERC721.sol 2023-03-07 10:48:47.736822221 +0100
|
||||
+++ token/ERC721/ERC721.sol 2023-03-09 19:50:20.555856358 +0100
|
||||
@@ -199,6 +199,11 @@
|
||||
return _owners[tokenId];
|
||||
}
|
||||
|
||||
+ // FV
|
||||
+ function _getApproved(uint256 tokenId) internal view returns (address) {
|
||||
+ return _tokenApprovals[tokenId];
|
||||
+ }
|
||||
+
|
||||
/**
|
||||
* @dev Returns whether `tokenId` exists.
|
||||
*
|
||||
Reference in New Issue
Block a user