This commit is contained in:
Boris Kubiak 2018-02-18 18:38:47 +01:00
parent c9546303cf
commit fd39937c84
2 changed files with 4 additions and 4 deletions

View file

@ -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;
};

View file

@ -14,7 +14,7 @@ module.exports = {
rules: [
{
test: /\.vue$/,
loader: 'vue-loader',
loader: 'vue-loader'
},
{
test: /vanity\.js$/,