File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ invariant defaultAdminRoleAdminConsistency()
7171└─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┘
7272*/
7373// Writing this as an invariant would be flagged by Certora as trivial . Writing it as a rule is just as valid : we
74- // verify the is true for any state of the storage
74+ // verify this is true for any state of the storage
7575rule ownerConsistency ( ) {
7676 assert defaultAdmin ( ) == owner ( ) ;
7777}
Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ invariant totalSupplyIsSmallerThanUnderlyingBalance()
6565 require sumOfUnderlyingBalancesLowerThanUnderlyingSupply (from , to );
6666 }
6767 preserved ERC20PermitHarness .burn (address from , uint256 amount ) with (env e ) {
68- // If someone can burn from the wrapper , than the invariant obviously doesn 't hold .
68+ // If someone can burn from the wrapper , then the invariant obviously doesn 't hold .
6969 require from != currentContract ;
7070 require sumOfUnderlyingBalancesLowerThanUnderlyingSupply (from , currentContract );
7171 }
You can’t perform that action at this time.
0 commit comments