fix factory init in app

This commit is contained in:
Ricardo Guilherme Schmidt 2018-10-29 19:38:52 +01:00
parent a7f807b6ff
commit 2f11d19c60
No known key found for this signature in database
GPG Key ID: 3F95A3AD0B607030
2 changed files with 2 additions and 3 deletions

View File

@ -64,8 +64,7 @@ module.exports = {
}, },
"IdentityFactory": { "IdentityFactory": {
"args":[], "args":[],
"gasLimit": 5000000, "gasLimit": 5000000
"onDeploy": ["IdentityFactory.methods.setKernel('$IdentityGasRelay').send({gasLimit: 6000000})"]
}, },
"TestContract": { "TestContract": {
"args": ["$STT"] "args": ["$STT"]

View File

@ -1,4 +1,4 @@
pragma solidity ^0.4.17; pragma solidity ^0.4.24;
import "../deploy/Factory.sol"; import "../deploy/Factory.sol";
import "../deploy/DelayedUpdatableInstance.sol"; import "../deploy/DelayedUpdatableInstance.sol";