@@ -245,20 +245,14 @@ contract TrimmingTest is Test {
245
245
246
246
// FUZZ TESTS
247
247
248
- // invariant: forall (TrimmedAmount a, TrimmedAmount b) a.saturatingAdd(b).amount <= type(uint64).max
248
+ // invariant: forall (TrimmedAmount a, TrimmedAmount b)
249
+ // a.saturatingAdd(b).amount <= type(uint64).max
249
250
function testFuzz_saturatingAddDoesNotOverflow (
250
251
TrimmedAmount memory a ,
251
252
TrimmedAmount memory b
252
253
) public {
253
254
vm.assume (a.decimals == b.decimals);
254
255
255
- // this is guaranteed by trimming
256
- a.amount = uint64 (bound (a.amount, 0 , type (uint64 ).max));
257
- a.decimals = uint8 (bound (a.decimals, 0 , 8 ));
258
-
259
- b.amount = uint64 (bound (b.amount, 0 , type (uint64 ).max));
260
- b.decimals = uint8 (bound (b.decimals, 0 , 8 ));
261
-
262
256
TrimmedAmount memory c = a.saturatingAdd (b);
263
257
264
258
// decimals should always be the same, else revert
@@ -273,8 +267,8 @@ contract TrimmingTest is Test {
273
267
// NOTE: above the TRIMMED_DECIMALS threshold will always get trimmed to TRIMMED_DECIMALS
274
268
// or trimmed to the number of decimals on the recipient chain.
275
269
// this tests for inputs with decimals > TRIMMED_DECIMALS
276
- function testFuzz_SubOperatorZeroAboveThreshold (uint256 amt , uint8 decimals ) public {
277
- uint8 decimals = uint8 (bound (decimals, 8 , 18 ));
270
+ function testFuzz_SubOperatorZeroAboveThreshold (uint256 amt , uint8 decimals ) public pure {
271
+ decimals = uint8 (bound (decimals, 8 , 18 ));
278
272
uint256 maxAmt = (type (uint64 ).max) / (10 ** decimals);
279
273
vm.assume (amt < maxAmt);
280
274
@@ -294,7 +288,7 @@ contract TrimmingTest is Test {
294
288
uint256 amtLeft ,
295
289
uint256 amtRight
296
290
) public {
297
- uint8 decimals = uint8 (bound (decimals, 8 , 18 ));
291
+ decimals = uint8 (bound (decimals, 8 , 18 ));
298
292
uint256 maxAmt = (type (uint64 ).max) / (10 ** decimals);
299
293
vm.assume (amtRight < maxAmt);
300
294
vm.assume (amtLeft < amtRight);
@@ -311,8 +305,8 @@ contract TrimmingTest is Test {
311
305
// NOTE: above the TRIMMED_DECIMALS threshold will always get trimmed to TRIMMED_DECIMALS
312
306
// or trimmed to the number of decimals on the recipient chain.
313
307
// this tests for inputs with decimals > TRIMMED_DECIMALS
314
- function testFuzz_AddOperatorZeroAboveThreshold (uint256 amt , uint8 decimals ) public {
315
- uint8 decimals = uint8 (bound (decimals, 8 , 18 ));
308
+ function testFuzz_AddOperatorZeroAboveThreshold (uint256 amt , uint8 decimals ) public pure {
309
+ decimals = uint8 (bound (decimals, 8 , 18 ));
316
310
uint256 maxAmt = (type (uint64 ).max) / (10 ** decimals);
317
311
vm.assume (amt < maxAmt);
318
312
0 commit comments