make it so that FIFSRegistrar isn't attempted to be deployed on livenet, ropsten, etc.

Signed-off-by: VoR0220 <catalanor0220@gmail.com>
This commit is contained in:
VoR0220 2018-06-26 13:32:53 -05:00
parent d12271e85d
commit 48a6e10f9f
1 changed files with 21 additions and 3 deletions

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'));
}