Skip to content

Commit 4513bc2

Browse files
authored
chore: exclude internal cheats from Vm.sol generation (#501)
1 parent ae570fe commit 4513bc2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/vm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def main():
3030
contract = Cheatcodes.from_json(json_str)
3131

3232
ccs = contract.cheatcodes
33-
ccs = list(filter(lambda cc: cc.status != "experimental", ccs))
33+
ccs = list(filter(lambda cc: cc.status not in ["experimental", "internal"], ccs))
3434
ccs.sort(key=lambda cc: cc.func.id)
3535

3636
safe = list(filter(lambda cc: cc.safety == "safe", ccs))

0 commit comments

Comments
 (0)