From 8d8ba7496e46fb063345c29bbc9111de91f8d3c2 Mon Sep 17 00:00:00 2001 From: 99 <83345377+992222@users.noreply.github.com> Date: Wed, 21 Sep 2022 04:02:09 +0200 Subject: [PATCH] typo --- src/Vm.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Vm.sol b/src/Vm.sol index a83bf9e9..470374fd 100644 --- a/src/Vm.sol +++ b/src/Vm.sol @@ -189,7 +189,7 @@ interface Vm { // This is similar to `roll` but for the currently active fork function rollFork(uint256) external; // Updates the currently active fork to given transaction - // this will `rollFork` with the number of the block the transaction was mined it and replays all transaction mined before it in the block + // this will `rollFork` with the number of the block the transaction was mined in and replays all transaction mined before it in the block function rollFork(bytes32) external; // Updates the given fork to given block number function rollFork(uint256 forkId, uint256 blockNumber) external;