only add & deploy fifs register if it's actually a non live env

This commit is contained in:
Iuri Matias 2018-09-21 17:53:42 -04:00
parent 3b6251eeb1
commit 78814dc9d6
1 changed files with 11 additions and 9 deletions

View File

@ -286,6 +286,7 @@ class ENS {
if (this.registration && this.registration.rootDomain) {
// Register root domain if it is defined
if (this.isDev || this.env === 'privatenet' || this.env ==='development') {
const rootNode = namehash.hash(this.registration.rootDomain);
config.default.contracts['FIFSRegistrar'] = {
"deploy": true,
@ -302,6 +303,7 @@ class ENS {
]
};
}
}
config.privatenet = config.development;
this.embark.registerContractConfiguration(config);