Skip to content

Commit

Permalink
Fix vale errors
Browse files Browse the repository at this point in the history
  • Loading branch information
louis-md committed Oct 18, 2024
1 parent 1584b26 commit 43b5368
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ function checkNSignatures(

Checks whether the signature provided is valid for the provided data and hash. Reverts otherwise.

*Since the EIP-1271 does an external call, be mindful of reentrancy attacks.*
*Since the EIP-1271 does an external call, be mindful of re-entrancy attacks.*

## Parameters

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ Gas that should be used for the Safe transaction.
### `baseGas`
- **Type:** `uint256`

Gas costs that are independent of the transaction execution (e.g. base transaction fee, signature check, payment of the refund).
Gas costs that are independent of the transaction execution (for example base transaction fee, signature check, payment of the refund).

### `gasPrice`
- **Type:** `uint256`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ function simulateAndRevert(address targetContract, bytes calldataPayload) extern
```

*Performs a delegatecall on a targetContract in the context of self. Internally reverts execution to avoid side effects (making it static).*
*Performs a `delegatecall` on a `targetContract` in the context of `self`. Internally reverts execution to avoid side effects (making it static).*

This method reverts with data equal to `abi.encode(bool(success), bytes(response))`. Specifically, the `returndata` after a call to this method will be: `success:bool || response.length:uint256 || response:bytes`.

Expand Down

0 comments on commit 43b5368

Please sign in to comment.