From 42a0fd2ca041078ef47d854d71db322da76c7748 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 8f1edfc7..93bca4e0 100644 --- a/lib/modules/ens/index.js +++ b/lib/modules/ens/index.js @@ -334,9 +334,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')); }