fix further linting issues

Signed-off-by: VoR0220 <catalanor0220@gmail.com>
This commit is contained in:
VoR0220 2018-05-23 11:55:11 -05:00
parent 55b659c233
commit ea17e235f3

View File

@ -37,9 +37,9 @@ class ENS {
code += "\nEmbarkJS.Names.registerProvider('ens', __embarkENS);";
this.embark.addCodeToEmbarkJS(code);
}
}
addSetProvider() {
addSetProvider() {
let config = JSON.stringify({
server: this.storageConfig.host,
port: this.storageConfig.port
@ -51,8 +51,8 @@ class ENS {
return (namesConfig.provider === 'ens' && storageConfig.enabled === true);
};
this.embark.addProviderInit('names', code, shouldInit);
}
this.embark.addProviderInit('names', code, shouldInit);
}
}
module.exports = ENS;