fix ens by using right addres depending on chain and also add isAvailable

This commit is contained in:
Jonathan Rainville 2018-07-11 12:47:15 -04:00 committed by Iuri Matias
parent 11f81858d5
commit eab906c719

View File

@ -374,6 +374,10 @@ EmbarkJS.Names.lookup = function (identifier, callback) {
return this.currentNameSystems.lookup(identifier, callback);
};
EmbarkJS.Names.isAvailable = function () {
return this.currentNameSystems.isAvailable();
};
// To Implement