Skip to content

Commit

Permalink
fix: apply suggestions
Browse files Browse the repository at this point in the history
  • Loading branch information
Jean-Grimal committed Oct 18, 2023
1 parent 3c5d48c commit 1188fbb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions src/PermitBundler.sol
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ abstract contract PermitBundler is BaseBundler {
/// @param asset The address of the token to be permitted.
/// @param amount The amount of `asset` to be permitted.
/// @param deadline The deadline of the approval.
/// @param v signature.v
/// @param r signature.r
/// @param s signature.s
/// @param v The `v` component of a signature.
/// @param r The `r` component of a signature.
/// @param s The `s` component of a signature.
function permit(address asset, uint256 amount, uint256 deadline, uint8 v, bytes32 r, bytes32 s, bool skipRevert)
external
payable
Expand Down
6 changes: 3 additions & 3 deletions src/migration/CompoundV3MigrationBundler.sol
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,9 @@ contract CompoundV3MigrationBundler is MigrationBundler {
/// @param isAllowed Whether the bundler is allowed to manage the initiator's position or not.
/// @param nonce The nonce of the signed message.
/// @param expiry The expiry of the signed message.
/// @param v signature.v
/// @param r signature.r
/// @param s signature.s
/// @param v The `v` component of a signature.
/// @param r The `r` component of a signature.
/// @param s The `s` component of a signature.
function compoundV3AllowBySig(
address instance,
bool isAllowed,
Expand Down

0 comments on commit 1188fbb

Please sign in to comment.