Skip to content

Commit

Permalink
Mine a block after the time has incresed in the tenderly wait command
Browse files Browse the repository at this point in the history
  • Loading branch information
sembrestels committed Aug 13, 2024
1 parent 99b80b4 commit 55bf1cf
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions packages/evmcrispr/src/modules/tenderly/commands/wait.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,10 @@ export const wait: ICommand<Tenderly> = {
method: "evm_increaseTime",
params: [toHex(duration)],
},
{
method: "evm_increaseBlocks",
params: [toHex(1n)],
},
];
},
async runEagerExecution() {
Expand Down

0 comments on commit 55bf1cf

Please sign in to comment.