Skip to content

Commit 1a61736

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

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

service_contracts/src/FilecoinWarmStorageService.sol

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -494,13 +494,17 @@ contract FilecoinWarmStorageService is
494494

495495
if (newStoragePrice > 0) {
496496
if (newStoragePrice > MAX_STORAGE_PRICE_PER_TIB_PER_MONTH) {
497-
revert Errors.PriceExceedsMaximum("storage", MAX_STORAGE_PRICE_PER_TIB_PER_MONTH, newStoragePrice);
497+
revert Errors.PriceExceedsMaximum(
498+
"storage", MAX_STORAGE_PRICE_PER_TIB_PER_MONTH, newStoragePrice
499+
);
498500
}
499501
storagePricePerTibPerMonth = newStoragePrice;
500502
}
501503
if (newCacheMissPrice > 0) {
502504
if (newCacheMissPrice > MAX_CACHE_MISS_PRICE_PER_TIB_PER_MONTH) {
503-
revert Errors.PriceExceedsMaximum("cacheMiss", MAX_CACHE_MISS_PRICE_PER_TIB_PER_MONTH, newCacheMissPrice);
505+
revert Errors.PriceExceedsMaximum(
506+
"cacheMiss", MAX_CACHE_MISS_PRICE_PER_TIB_PER_MONTH, newCacheMissPrice
507+
);
504508
}
505509
cacheMissPricePerTibPerMonth = newCacheMissPrice;
506510
}

0 commit comments

Comments
 (0)