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.sleep(uint)
VmSafe
1 parent 4b8d29e commit 669e4a6Copy full SHA for 669e4a6
src/Vm.sol
@@ -539,4 +539,6 @@ interface Vm is VmSafe {
539
function transact(bytes32 txHash) external;
540
// Fetches the given transaction from the given fork and executes it on the current state
541
function transact(uint256 forkId, bytes32 txHash) external;
542
+ // Suspends execution of the main thread for `duration` milliseconds
543
+ function sleep(uint256 duration) external;
544
}
0 commit comments