File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -80,15 +80,15 @@ In the `CryticERC20ExternalHarness` contract you can specify which properties to
8080``` Solidity
8181pragma solidity ^0.8.0;
8282import "./MyToken.sol";
83- import {ICryticTokenMock } from "@crytic/properties/contracts/ERC20/external/util/ITokenMock.sol";
83+ import {ITokenMock } from "@crytic/properties/contracts/ERC20/external/util/ITokenMock.sol";
8484import {CryticERC20ExternalBasicProperties} from "@crytic/properties/contracts/ERC20/external/properties/ERC20ExternalBasicProperties.sol";
8585import {PropertiesConstants} from "@crytic/properties/contracts/util/PropertiesConstants.sol";
8686
8787
8888contract CryticERC20ExternalHarness is CryticERC20ExternalBasicProperties {
8989 constructor() {
9090 // Deploy ERC20
91- token = ICryticTokenMock (address(new CryticTokenMock()));
91+ token = ITokenMock (address(new CryticTokenMock()));
9292 }
9393}
9494
You can’t perform that action at this time.
0 commit comments