From d33c948dcf573dcb6d4c8663a24759529ed48dad Mon Sep 17 00:00:00 2001 From: VoR0220 Date: Tue, 26 Jun 2018 13:32:53 -0500 Subject: [PATCH] make it so that FIFSRegistrar isn't attempted to be deployed on livenet, ropsten, etc. Signed-off-by: VoR0220 --- lib/modules/ens/index.js | 24 +++++++++++++++++++++--- 1 file changed, 21 insertions(+), 3 deletions(-) diff --git a/lib/modules/ens/index.js b/lib/modules/ens/index.js index 5051570c9..fac81782a 100644 --- a/lib/modules/ens/index.js +++ b/lib/modules/ens/index.js @@ -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')); }