Skip to content

Commit 58d3051

Browse files
grandizzymds1
andauthored
feat: add publicKeyP256, pauseTracing, and resumeTracing cheatcodes (#596)
* Add publicKeyP256 cheatcode * add pauseTracing and resumeTracing cheats --------- Co-authored-by: Matt Solomon <[email protected]>
1 parent bf66061 commit 58d3051

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

src/Vm.sol

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

test/Vm.t.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ contract VmTest is Test {
99
// inadvertently moved between Vm and VmSafe. This test must be updated each time a function is
1010
// added to or removed from Vm or VmSafe.
1111
function test_interfaceId() public pure {
12-
assertEq(type(VmSafe).interfaceId, bytes4(0x5c59cbde), "VmSafe");
12+
assertEq(type(VmSafe).interfaceId, bytes4(0x23e7dc1b), "VmSafe");
1313
assertEq(type(Vm).interfaceId, bytes4(0x1316b43e), "Vm");
1414
}
1515
}

0 commit comments

Comments
 (0)