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.
2 parents 1c5a684 + f9f7db0 commit 516f1ecCopy full SHA for 516f1ec
test/utils/Blockhash.t.sol
@@ -67,6 +67,7 @@ contract BlockhashTest is Test {
67
function testFuzzFutureBlocks(uint256 offset, uint256 currentBlock) public {
68
// Future blocks
69
offset = bound(offset, 1, type(uint256).max);
70
+ currentBlock = bound(currentBlock, 0, type(uint256).max - offset);
71
vm.roll(currentBlock);
72
73
unchecked {
0 commit comments