Skip to content

Commit e47e55e

Browse files
Merge pull request #15 from 0xmichalis/doc-fix
Fix interface in external testing code example
2 parents 91ef906 + daad62e commit e47e55e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -80,15 +80,15 @@ In the `CryticERC20ExternalHarness` contract you can specify which properties to
8080
```Solidity
8181
pragma solidity ^0.8.0;
8282
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";
8484
import {CryticERC20ExternalBasicProperties} from "@crytic/properties/contracts/ERC20/external/properties/ERC20ExternalBasicProperties.sol";
8585
import {PropertiesConstants} from "@crytic/properties/contracts/util/PropertiesConstants.sol";
8686
8787
8888
contract CryticERC20ExternalHarness is CryticERC20ExternalBasicProperties {
8989
constructor() {
9090
// Deploy ERC20
91-
token = ICryticTokenMock(address(new CryticTokenMock()));
91+
token = ITokenMock(address(new CryticTokenMock()));
9292
}
9393
}
9494

0 commit comments

Comments
 (0)