Skip to content

Commit

Permalink
fix: change name to TransferHarness
Browse files Browse the repository at this point in the history
  • Loading branch information
QGarchery committed Aug 16, 2023
1 parent 9229f3c commit ffc7844
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion certora/harness/TransferHarness.sol
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ interface IERC20Extended is IERC20 {
function totalSupply() external returns (uint256);
}

contract Transferer {
contract TransferHarness {
function doTransfer(address token, address from, address to, uint256 value) public {
IERC20Extended(token).transferFrom(from, to, value);
}
Expand Down
2 changes: 1 addition & 1 deletion certora/scripts/verifyBlueTransferSummary.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ certoraRun \
certora/harness/TransferHarness.sol \
certora/dispatch/ERC20Good.sol \
certora/dispatch/ERC20USDT.sol \
--verify Transferer:certora/specs/BlueTransferSummary.spec \
--verify TransferHarness:certora/specs/BlueTransferSummary.spec \
--packages openzeppelin-contracts=lib/openzeppelin-contracts/contracts \
--loop_iter 3 \
--optimistic_loop \
Expand Down

0 comments on commit ffc7844

Please sign in to comment.