Closed godsflaw closed 4 years ago
You can actually shorten this up by removing the kwargs from the interfaces. Check out how it's done in some of the other interfaces, so like
function file(bytes32 ilk, bytes32 what, uint256 data) external;
becomes
function file(bytes32, bytes32, uint256) external;
It might help keep some of the functions from spanning multiple lines and help keep the resulting flattened files a little cleaner.
You can actually shorten this up by removing the kwargs from the interfaces. Check out how it's done in some of the other interfaces, so like
function file(bytes32 ilk, bytes32 what, uint256 data) external;
becomesfunction file(bytes32, bytes32, uint256) external;
It might help keep some of the functions from spanning multiple lines and help keep the resulting flattened files a little cleaner.
Updated by using a regex, so squint at it.
Creates an
IlkRegistryAbstract
for the newIlkRegistry
contract: https://github.com/makerdao/ilk-registry/blob/master/src/IlkRegistry.sol