get rid of else
Signed-off-by: VoR0220 <catalanor0220@gmail.com>
This commit is contained in:
parent
aa23da2b6a
commit
0d2bedff84
|
@ -199,9 +199,8 @@ __embarkENS.resolve = function (name) {
|
||||||
if (err == 'Couldn\'t decode addr from ABI: 0x') {
|
if (err == 'Couldn\'t decode addr from ABI: 0x') {
|
||||||
console.log(name + " is not registered");
|
console.log(name + " is not registered");
|
||||||
return "0x";
|
return "0x";
|
||||||
} else {
|
|
||||||
return err;
|
|
||||||
}
|
}
|
||||||
|
return err;
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -223,8 +222,7 @@ __embarkENS.lookup = function (address) {
|
||||||
if (err == 'ERROR: The returned value is not a convertible string: 0x0') {
|
if (err == 'ERROR: The returned value is not a convertible string: 0x0') {
|
||||||
console.log('Address does not resolve to name. Try syncing chain.');
|
console.log('Address does not resolve to name. Try syncing chain.');
|
||||||
return "";
|
return "";
|
||||||
} else {
|
|
||||||
return err;
|
|
||||||
}
|
}
|
||||||
|
return err;
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue