Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 5796c58

Browse files
committedMar 18, 2025··
lint
1 parent 8f98763 commit 5796c58

File tree

2 files changed

+5
-10
lines changed

2 files changed

+5
-10
lines changed
 

‎src/interfaces/facades/IBlobsFacade.sol

+3-3
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,8 @@ struct Subscription {
7474
/// @dev Params for trimming blob expiries.
7575
/// @param subscriber (address): Address to trim blob expiries for.
7676
/// @param startingHash (bytes32): Starting hash to trim expiries from. 0x00 means "None".
77-
/// @param limit (uint64): Maximum number of blobs that will be examined for trimming. 0 means "no limit" or rather max of uint64.
77+
/// @param limit (uint64): Maximum number of blobs that will be examined for trimming.
78+
/// 0 means "no limit" or rather max of uint64.
7879
struct TrimBlobExpiriesParams {
7980
address subscriber;
8081
bytes32 startingHash;
@@ -128,8 +129,7 @@ interface IBlobsFacade {
128129
/// @param subscriber The address of the subscriber.
129130
/// @param blobHash Blob blake3 hash to delete.
130131
/// @param subscriptionId Identifier used to differentiate blob additions for the same subscriber.
131-
function deleteBlob(address subscriber, bytes32 blobHash, string memory subscriptionId)
132-
external;
132+
function deleteBlob(address subscriber, bytes32 blobHash, string memory subscriptionId) external;
133133

134134
/// @dev Overwrite a blob in storage.
135135
/// @param oldHash The blake3 hash of the blob to be deleted.

‎src/interfaces/facades/ICreditFacade.sol

+2-7
Original file line numberDiff line numberDiff line change
@@ -57,13 +57,8 @@ interface ICreditFacade {
5757
/// @param gasFeeLimit Optional gas fee approval limit. Use zero if unused, indicating a null value.
5858
/// @param ttl Optional credit approval time-to-live epochs. Minimum value is 3600 (1 hour). Use zero if
5959
/// unused, indicating a null value.
60-
function approveCredit(
61-
address to,
62-
address[] memory caller,
63-
uint256 creditLimit,
64-
uint256 gasFeeLimit,
65-
uint64 ttl
66-
) external;
60+
function approveCredit(address to, address[] memory caller, uint256 creditLimit, uint256 gasFeeLimit, uint64 ttl)
61+
external;
6762

6863
/// @dev Revoke credits for an account. Assumes `msg.sender` is the owner of the credits.
6964
/// @param to The address of the account to revoke credits for.

0 commit comments

Comments
 (0)
Please sign in to comment.