Lint
This commit is contained in:
parent
c9546303cf
commit
fd39937c84
2 changed files with 4 additions and 4 deletions
|
@ -36,9 +36,9 @@ const isValidVanityWallet = (wallet, input, isChecksum) => {
|
|||
const hash = ethUtils.sha3(address).toString('hex');
|
||||
|
||||
for (let i = 0; i < input.length; i++) {
|
||||
if(input[i] !== (parseInt(hash[i], 16) >= 8 ? address[i].toUpperCase() : address[i])) {
|
||||
return false;
|
||||
}
|
||||
if (input[i] !== (parseInt(hash[i], 16) >= 8 ? address[i].toUpperCase() : address[i])) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
return true;
|
||||
};
|
||||
|
|
|
@ -14,7 +14,7 @@ module.exports = {
|
|||
rules: [
|
||||
{
|
||||
test: /\.vue$/,
|
||||
loader: 'vue-loader',
|
||||
loader: 'vue-loader'
|
||||
},
|
||||
{
|
||||
test: /vanity\.js$/,
|
||||
|
|
Loading…
Add table
Reference in a new issue