Skip to content

Commit e4aef94

Browse files
Tudmotumds1
andauthored
feat: add vm.prompt cheatcodes to Vm interface (#529)
* Add vm.prompt cheatcodes to Vm interface (fixes #528) * regenerate using vm.py --------- Co-authored-by: Matt Solomon <[email protected]>
1 parent 9ba64c0 commit e4aef94

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

src/Vm.sol

Lines changed: 6 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(0xce9c7617), "VmSafe");
12+
assertEq(type(VmSafe).interfaceId, bytes4(0x97511f22), "VmSafe");
1313
assertEq(type(Vm).interfaceId, bytes4(0xaf68a970), "Vm");
1414
}
1515
}

0 commit comments

Comments
 (0)