Skip to content

Commit ff58420

Browse files
author
Rahul Maganti
committed
fix: use bound instead of assume for uints
1 parent 4e1ff5f commit ff58420

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

evm/test/RateLimit.t.sol

+2-1
Original file line numberDiff line numberDiff line change
@@ -739,7 +739,8 @@ contract TestRateLimit is Test, IRateLimiterEvents {
739739
// this should consume capacity on the outbound side
740740
// and backfill the inbound side
741741
function testFuzz_CircularFlowBackFilling(uint64 mintAmt, uint64 transferAmt) public {
742-
vm.assume(transferAmt > 0 && transferAmt < mintAmt);
742+
mintAmt = uint64(bound(mintAmt, 2, type(uint64).max));
743+
transferAmt = uint64(bound(transferAmt, 1, mintAmt - 1));
743744

744745
(address user_A, address user_B, DummyToken token, uint8 decimals) = setupToken();
745746

0 commit comments

Comments
 (0)