Skip to content

Commit d29d78e

Browse files
fix: [TRST-R-1] minor fixes
1 parent dbe49d5 commit d29d78e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

packages/horizon/contracts/payments/collectors/RecurringCollector.sol

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ contract RecurringCollector is EIP712, GraphDirectory, Authorizable, IRecurringC
7171

7272
/**
7373
* @inheritdoc IRecurringCollector
74-
* @notice Accept an indexing agreement.
74+
* @notice Accept a Recurring Collection Agreement.
7575
* See {IRecurringCollector.accept}.
7676
* @dev Caller must be the data service the RCA was issued to.
7777
*/
@@ -148,7 +148,7 @@ contract RecurringCollector is EIP712, GraphDirectory, Authorizable, IRecurringC
148148

149149
/**
150150
* @inheritdoc IRecurringCollector
151-
* @notice Cancel an indexing agreement.
151+
* @notice Cancel a Recurring Collection Agreement.
152152
* See {IRecurringCollector.cancel}.
153153
* @dev Caller must be the data service for the agreement.
154154
*/
@@ -181,7 +181,7 @@ contract RecurringCollector is EIP712, GraphDirectory, Authorizable, IRecurringC
181181

182182
/**
183183
* @inheritdoc IRecurringCollector
184-
* @notice Update an indexing agreement.
184+
* @notice Update a Recurring Collection Agreement.
185185
* See {IRecurringCollector.update}.
186186
* @dev Caller must be the data service for the agreement.
187187
* @dev Note: Updated pricing terms apply immediately and will affect the next collection

packages/subgraph-service/contracts/libraries/IndexingAgreementDecoder.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ library IndexingAgreementDecoder {
9595
) {
9696
return decoded;
9797
} catch {
98-
revert IndexingAgreementDecoderInvalidData("decodeCollectIndexingFeeData", data);
98+
revert IndexingAgreementDecoderInvalidData("decodeIndexingAgreementTermsV1", data);
9999
}
100100
}
101101
}

0 commit comments

Comments
 (0)