if no register config, dont register anything
This commit is contained in:
parent
424d375f87
commit
2cd11715bb
|
@ -410,3 +410,5 @@ class ENS {
|
|||
}
|
||||
|
||||
module.exports = ENS;
|
||||
|
||||
|
||||
|
|
|
@ -3,7 +3,11 @@ const namehash = require('eth-ens-namehash');
|
|||
// Price of ENS registration contract functions
|
||||
const ENS_GAS_PRICE = 700000;
|
||||
|
||||
<<<<<<< HEAD
|
||||
function registerSubDomain(ens, registrar, resolver, defaultAccount, subdomain, rootDomain, reverseNode, address, logger, secureSend, callback) {
|
||||
=======
|
||||
function registerSubDomain(ens, registrar, resolver, defaultAccount, subdomain, rootDomain, reverseNode, address, callback) {
|
||||
>>>>>>> if no register config, dont register anything
|
||||
const subnode = namehash.hash(subdomain);
|
||||
const rootNode = namehash.hash(rootDomain);
|
||||
const node = namehash.hash(`${subdomain}.${rootDomain}`);
|
||||
|
|
Loading…
Reference in New Issue