diff --git a/config/contracts.json b/config/contracts.json index 7491c92..b43b2f3 100644 --- a/config/contracts.json +++ b/config/contracts.json @@ -32,10 +32,13 @@ "UpdatableInstance": {"deploy": false}, "Controlled": {"deploy": false}, "Owned": {"deploy": false}, - "IdentityGasRelay": {"gasLimit": 4000000}, + "IdentityGasRelay": { + "deploy": true, + "args": [[], [], [], 1, 1, "0x0000000000000000000000000000000000000000"] + }, "IdentityKernel": {"deploy": false}, "IdentityFactory": { - "args":["0x00"], + "args":[], "gasLimit": 5000000, "onDeploy": ["IdentityFactory.methods.setKernel('$IdentityGasRelay').send({gasLimit: 1000000})"] }, diff --git a/contracts/identity/IdentityKernel.sol b/contracts/identity/IdentityKernel.sol index 5e308e5..568fb5f 100644 --- a/contracts/identity/IdentityKernel.sol +++ b/contracts/identity/IdentityKernel.sol @@ -1,9 +1,9 @@ pragma solidity ^0.4.17; import "../deploy/DelayedUpdatableInstanceStorage.sol"; -import "./IdentityGasRelay.sol"; +import "./Identity.sol"; -contract IdentityKernel is DelayedUpdatableInstanceStorage, IdentityGasRelay { +contract IdentityKernel is DelayedUpdatableInstanceStorage, Identity { constructor() Identity(