Trying to deploy IdentityGasRelay
This commit is contained in:
parent
8c3933e4c3
commit
b6ceff7fc8
|
@ -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})"]
|
||||
},
|
||||
|
|
|
@ -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(
|
||||
|
|
Loading…
Reference in New Issue