remove provider!==ens
This commit is contained in:
parent
73c2ee887d
commit
7eda40742d
|
@ -16,9 +16,10 @@ class ENS {
|
|||
|
||||
if (this.namesConfig === {} ||
|
||||
this.namesConfig.enabled !== true ||
|
||||
this.namesConfig.available_providers.indexOf('ens') < 0 ||
|
||||
this.namesConfig.provider !== 'ens') {
|
||||
this.namesConfig.available_providers.indexOf('ens') < 0) {
|
||||
return;
|
||||
} else if (this.namesConfig.provider !== 'ens') {
|
||||
this.providerNotENS = true;
|
||||
}
|
||||
|
||||
this.addENSToEmbarkJS();
|
||||
|
@ -186,6 +187,9 @@ class ENS {
|
|||
|
||||
addENSToEmbarkJS() {
|
||||
const self = this;
|
||||
if (self.providerNotENS) {
|
||||
return;
|
||||
}
|
||||
|
||||
// get namehash, import it into file
|
||||
self.events.request("version:get:eth-ens-namehash", function (EnsNamehashVersion) {
|
||||
|
|
Loading…
Reference in New Issue