Fix how difficulty is computed

This commit is contained in:
Boris 2017-12-26 18:43:52 +01:00
parent f79b616044
commit 52f4f2be3f
2 changed files with 3 additions and 2 deletions

File diff suppressed because one or more lines are too long

View file

@ -38,7 +38,8 @@ const isValidVanityWallet = (wallet, input, isChecksum) => {
};
const computeDifficulty = (pattern, isChecksum) => {
return Math.pow(isChecksum ? 22 : 16, pattern.length);
const ret = Math.pow(16, pattern.length);
return isChecksum ? (ret * Math.pow(2, pattern.replace(/[^a-f]/gi, '').length)) : ret;
};
const computeProbability = (difficulty, attempts) => {