Browse Source

Changed rule description to match phrasing of assert comment

Thomas Adams 3 years ago
parent
commit
78263e2a9a
1 changed files with 2 additions and 1 deletions
  1. 2 1
      certora/specs/ERC1155Burnable.spec

+ 2 - 1
certora/specs/ERC1155Burnable.spec

@@ -4,7 +4,8 @@ methods {
 }
 
 /// If a method call reduces account balances, the caller must be either the 
-/// owner of the account or approved by the owner to act on the owner's behalf.
+/// holder of the account or approved by the holder to act on the holder's 
+/// behalf.
 rule onlyHolderOrApprovedCanReduceBalance {
     address holder; uint256 token; uint256 amount;
     uint256 balanceBefore = balanceOf(holder, token);