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');
|
const hash = ethUtils.sha3(address).toString('hex');
|
||||||
|
|
||||||
for (let i = 0; i < input.length; i++) {
|
for (let i = 0; i < input.length; i++) {
|
||||||
if(input[i] !== (parseInt(hash[i], 16) >= 8 ? address[i].toUpperCase() : address[i])) {
|
if (input[i] !== (parseInt(hash[i], 16) >= 8 ? address[i].toUpperCase() : address[i])) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
};
|
};
|
||||||
|
|
|
@ -14,7 +14,7 @@ module.exports = {
|
||||||
rules: [
|
rules: [
|
||||||
{
|
{
|
||||||
test: /\.vue$/,
|
test: /\.vue$/,
|
||||||
loader: 'vue-loader',
|
loader: 'vue-loader'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
test: /vanity\.js$/,
|
test: /vanity\.js$/,
|
||||||
|
|
Loading…
Add table
Reference in a new issue