Skip to content

Commit

Permalink
fix: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
marktoda committed Oct 18, 2024
1 parent ef02200 commit a7bfb24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libraries/VanityAddressLib.sol
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ library VanityAddressLib {
uint256 leadingZeroCount = getLeadingNibbleCount(addrBytes, 0, 0);
calculatedScore += (leadingZeroCount * 10);

// special handling for 4s immediatley after leading 0s
// special handling for 4s immediately after leading 0s
uint256 leadingFourCount = getLeadingNibbleCount(addrBytes, leadingZeroCount, 4);
// If the first nonzero nibble is not 4, return 0
if (leadingFourCount == 0) {
Expand Down

0 comments on commit a7bfb24

Please sign in to comment.