Getting other contract libraries to build with LibEIP712 now a regular library

This commit is contained in:
Greg Hysen
2019-06-24 15:49:44 -07:00
parent 03142d82bc
commit 7aeeaae015
2 changed files with 8 additions and 1 deletions

View File

@@ -109,4 +109,12 @@ library LibEIP712 {
}
return result;
}
function _getDomainSeparatorSchemaHash()
internal
pure
returns (bytes32)
{
return EIP712_DOMAIN_SEPARATOR_SCHEMA_HASH;
}
}