This commit is contained in:
Anthony Laibe 2018-08-29 11:08:40 +01:00
parent 98c785a4bb
commit 581b0c9f42
1 changed files with 1 additions and 1 deletions

View File

@ -221,7 +221,7 @@ __embarkENS.lookup = function (address, callback) {
if (resolverAddress === voidAddress) {
return cb('Address not associated to a resolver');
}
let resolverContract = new EmbarkJS.Contract({abi: this.resolverInterface, address: resolverAddress, web3: web3 });
let resolverContract = new EmbarkJS.Contract({abi: this.resolverInterface, address: resolverAddress, web3: web3});
resolverContract.methods.name(node).call(cb);
});
};