small correction
Signed-off-by: VoR0220 <catalanor0220@gmail.com>
This commit is contained in:
parent
d33c948dcf
commit
06953d99c4
|
@ -196,7 +196,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";
|
||||
}
|
||||
|
@ -219,7 +219,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 "";
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue