Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix/err #14

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion contracts/helpers/VerifierCaller.sol
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ abstract contract VerifierCaller {
return returnValue == 1;
}

// Otherwise return false for the unsucessful calls and invalid signatures
// Otherwise return false for the unsuccessful calls and invalid signatures
return false;
}
}
2 changes: 1 addition & 1 deletion contracts/paymasters/ERC20Paymaster.sol
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ contract ERC20Paymaster is IPaymaster, PrimaryProdDataServiceConsumerBase, Ownab
// By default we consider the transaction as accepted.
magic = PAYMASTER_VALIDATION_SUCCESS_MAGIC;

// Revert if standart paymaster input is shorter than 4 bytes
// Revert if standard paymaster input is shorter than 4 bytes
if (_transaction.paymasterInput.length < 4) revert Errors.SHORT_PAYMASTER_INPUT();

// Check the paymaster input selector to detect flow
Expand Down