We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Vm.sol
1 parent ae570fe commit 4513bc2Copy full SHA for 4513bc2
scripts/vm.py
@@ -30,7 +30,7 @@ def main():
30
contract = Cheatcodes.from_json(json_str)
31
32
ccs = contract.cheatcodes
33
- ccs = list(filter(lambda cc: cc.status != "experimental", ccs))
+ ccs = list(filter(lambda cc: cc.status not in ["experimental", "internal"], ccs))
34
ccs.sort(key=lambda cc: cc.func.id)
35
36
safe = list(filter(lambda cc: cc.safety == "safe", ccs))
0 commit comments