fuzzland / ityfuzz

Blazing Fast Bytecode-Level Hybrid Fuzzer for Smart Contracts

Home Page:https://docs.ityfuzz.rs

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

`vm.startPrank` is broken

shouc opened this issue · comments

// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.13;

import {Test, console2} from "forge-std/Test.sol";
import {XXX} from "../src/XXX.sol";

contract Inv1 is Test {
    XXX usdc;
    function setUp() public {
        vm.startPrank(address(0x1)); // <= reverts
    }
}