Skip to content

Commit ba45531

Browse files
committed
chore: fix lint-errors
chore: fix lint-errors
1 parent 84beba8 commit ba45531

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

service_contracts/src/FilecoinWarmStorageService.sol

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -500,7 +500,9 @@ contract FilecoinWarmStorageService is
500500
}
501501
if (newCacheMissPrice > 0) {
502502
if (newCacheMissPrice > MAX_CACHE_MISS_PRICE_PER_TIB_PER_MONTH) {
503-
revert Errors.PriceExceedsMaximum("cacheMiss", MAX_CACHE_MISS_PRICE_PER_TIB_PER_MONTH, newCacheMissPrice);
503+
revert Errors.PriceExceedsMaximum(
504+
"cacheMiss", MAX_CACHE_MISS_PRICE_PER_TIB_PER_MONTH, newCacheMissPrice
505+
);
504506
}
505507
cacheMissPricePerTibPerMonth = newCacheMissPrice;
506508
}

0 commit comments

Comments
 (0)