Skip to content

Commit b3add98

Browse files
Add solc 5 to AttributeRegistryInterface's pragma
Allow AttributeRegistryInterface to be used by Solidity 5 projects as well.
1 parent 9db5b8b commit b3add98

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

contracts/AttributeRegistryInterface.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
pragma solidity ^0.4.25;
1+
pragma solidity >=0.4.25;
22

33

44
/**
@@ -52,4 +52,4 @@ interface AttributeRegistryInterface {
5252
* `index` value falls inside said range.
5353
*/
5454
function getAttributeTypeID(uint256 index) external view returns (uint256);
55-
}
55+
}

0 commit comments

Comments
 (0)