Skip to content

Commit

Permalink
docs: assumeNoPrecompiles -> assumeNotPrecompile
Browse files Browse the repository at this point in the history
There was a breaking change in
foundry-rs/forge-std#407 which renamed
`assumeNoPrecompiles()` to `assumeNotPrecompile`.
  • Loading branch information
0x-r4bbit committed Aug 8, 2023
1 parent 6fd8be5 commit 6d50099
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/reference/forge-std/assume-no-precompiles.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
## `assumeNoPrecompiles`
## `assumeNotPrecompile`

### Signature

```solidity
function assumeNoPrecompiles(address addr) public;
function assumeNotPrecompile(address addr) public;
```

```solidity
function assumeNoPrecompiles(address addr, uint256 chainid) public;
function assumeNotPrecompile(address addr, uint256 chainid) public;
```

### Description
Expand Down

0 comments on commit 6d50099

Please sign in to comment.