File tree 1 file changed +2
-2
lines changed
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
80
80
``` Solidity
81
81
pragma solidity ^0.8.0;
82
82
import "./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";
84
84
import {CryticERC20ExternalBasicProperties} from "@crytic/properties/contracts/ERC20/external/properties/ERC20ExternalBasicProperties.sol";
85
85
import {PropertiesConstants} from "@crytic/properties/contracts/util/PropertiesConstants.sol";
86
86
87
87
88
88
contract CryticERC20ExternalHarness is CryticERC20ExternalBasicProperties {
89
89
constructor() {
90
90
// Deploy ERC20
91
- token = ICryticTokenMock (address(new CryticTokenMock()));
91
+ token = ITokenMock (address(new CryticTokenMock()));
92
92
}
93
93
}
94
94
You can’t perform that action at this time.
0 commit comments