Skip to content

Commit

Permalink
remove leftover var
Browse files Browse the repository at this point in the history
  • Loading branch information
dk1a committed Jul 13, 2023
1 parent 6c3b58e commit 3624e47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/schema-type/src/solidity/SchemaType.sol
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ enum SchemaType {
* Get the length of the data for the given schema type
* (Because Solidity doesn't support constant arrays, we need to use a function)
*/
function getStaticByteLength(SchemaType schemaType) pure returns (uint256 r) {
function getStaticByteLength(SchemaType schemaType) pure returns (uint256) {
uint256 index = uint8(schemaType);

if (index < 97) {
Expand Down

0 comments on commit 3624e47

Please sign in to comment.