Fix how difficulty is computed
This commit is contained in:
parent
f79b616044
commit
52f4f2be3f
2 changed files with 3 additions and 2 deletions
File diff suppressed because one or more lines are too long
|
@ -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) => {
|
||||
|
|
Loading…
Add table
Reference in a new issue