small correction

Signed-off-by: VoR0220 <catalanor0220@gmail.com>
This commit is contained in:
VoR0220 2018-06-26 14:44:29 -05:00
parent 5e7cd6a88b
commit 93feea7c6d
1 changed files with 2 additions and 2 deletions

View File

@ -173,7 +173,7 @@ __embarkENS.resolve = function (name) {
}).then((addr) => {
return addr;
}).catch((err) => {
if (err == 'Couldn\'t decode addr from ABI: 0x') {
if (err == 'Error: Couldn\'t decode address from ABI: 0x') {
console.log(name + " is not registered");
return "0x";
}
@ -196,7 +196,7 @@ __embarkENS.lookup = function (address) {
let resolverContract = new EmbarkJS.Contract({abi: self.resolverInterface, address: resolverAddress});
return resolverContract.methods.name(node).call();
}).catch((err) => {
if (err == 'ERROR: The returned value is not a convertible string: 0x0') {
if (err == 'ERROR: The returned value is not a convertible string: 0x0' || err == 'Error: Couldn\'t decode address from ABI: 0x') {
console.log('Address does not resolve to name. Try syncing chain.');
return "";
}