Fixing naming errors required for compilation

This commit is contained in:
Richard Ramos 2018-04-09 16:05:19 -04:00
parent 74262dd33e
commit 79da42e2ba
2 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@ contract IdentityFactory is Factory {
function IdentityFactory(bytes _infohash)
public
Factory(new IdentityKernel(), _infohash)
Factory(new IdentityKernel())
{
}

View File

@ -8,6 +8,6 @@ contract UpdatedIdentityKernel is IdentityKernel {
event TestFunctionExecuted(uint256 minApprovalsByManagementKeys);
function test() public {
TestFunctionExecuted(minimumApprovalsByKeyPurpose[MANAGEMENT_KEY]);
TestFunctionExecuted(purposeThreshold[MANAGEMENT_KEY]);
}
}