mirror of https://github.com/embarklabs/embark.git
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:
parent
d12271e85d
commit
48a6e10f9f
|
@ -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'));
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue