Merge pull request #584 from embark-framework/fixDeploymentAttempts

make it so that FIFSRegistrar isn't attempted to be deployed on liven…
This commit is contained in:
RJ Catalano 2018-06-26 13:53:49 -05:00 committed by GitHub
commit 2c6bdc3204
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -108,9 +108,27 @@ class ENS {
}
}
},
"ropsten": {},
"rinkeby": {},
"livenet": {}
"ropsten": {
"contracts": {
"FIFSRegistrar": {
"deploy": false
}
}
},
"rinkeby": {
"contracts": {
"FIFSRegistrar": {
"deploy": false
}
}
},
"livenet": {
"contracts": {
"FIFSRegistrar": {
"deploy": false
}
}
}
});
self.embark.events.request("config:contractsFiles:add", self.embark.pathToFile('./contracts/FIFSRegistrar.sol'));
}