@@ -213,17 +213,17 @@ contract RecurringCollector is EIP712, GraphDirectory, Authorizable, IRecurringC
213
213
}
214
214
215
215
/**
216
- * @notice See {IRecurringCollector.hashRCA712 }
216
+ * @notice See {IRecurringCollector.hashRCA }
217
217
*/
218
- function hashRCA712 (RecurringCollectionAgreement calldata rca ) external view returns (bytes32 ) {
219
- return _hashRCA712 (rca);
218
+ function hashRCA (RecurringCollectionAgreement calldata rca ) external view returns (bytes32 ) {
219
+ return _hashRCA (rca);
220
220
}
221
221
222
222
/**
223
- * @notice See {IRecurringCollector.hashRCAU712 }
223
+ * @notice See {IRecurringCollector.hashRCAU }
224
224
*/
225
- function hashRCAU712 (RecurringCollectionAgreementUpdate calldata rcau ) external view returns (bytes32 ) {
226
- return _hashRCAU712 (rcau);
225
+ function hashRCAU (RecurringCollectionAgreementUpdate calldata rcau ) external view returns (bytes32 ) {
226
+ return _hashRCAU (rcau);
227
227
}
228
228
229
229
/**
@@ -371,22 +371,22 @@ contract RecurringCollector is EIP712, GraphDirectory, Authorizable, IRecurringC
371
371
* @notice See {IRecurringCollector.recoverRCASigner}
372
372
*/
373
373
function _recoverRCASigner (SignedRCA memory _signedRCA ) private view returns (address ) {
374
- bytes32 messageHash = _hashRCA712 (_signedRCA.rca);
374
+ bytes32 messageHash = _hashRCA (_signedRCA.rca);
375
375
return ECDSA.recover (messageHash, _signedRCA.signature);
376
376
}
377
377
378
378
/**
379
379
* @notice See {IRecurringCollector.recoverRCAUSigner}
380
380
*/
381
381
function _recoverRCAUSigner (SignedRCAU memory _signedRCAU ) private view returns (address ) {
382
- bytes32 messageHash = _hashRCAU712 (_signedRCAU.rcau);
382
+ bytes32 messageHash = _hashRCAU (_signedRCAU.rcau);
383
383
return ECDSA.recover (messageHash, _signedRCAU.signature);
384
384
}
385
385
386
386
/**
387
- * @notice See {IRecurringCollector.hashRCA712 }
387
+ * @notice See {IRecurringCollector.hashRCA }
388
388
*/
389
- function _hashRCA712 (RecurringCollectionAgreement memory _rca ) private view returns (bytes32 ) {
389
+ function _hashRCA (RecurringCollectionAgreement memory _rca ) private view returns (bytes32 ) {
390
390
return
391
391
_hashTypedDataV4 (
392
392
keccak256 (
@@ -409,9 +409,9 @@ contract RecurringCollector is EIP712, GraphDirectory, Authorizable, IRecurringC
409
409
}
410
410
411
411
/**
412
- * @notice See {IRecurringCollector.hashRCAU712 }
412
+ * @notice See {IRecurringCollector.hashRCAU }
413
413
*/
414
- function _hashRCAU712 (RecurringCollectionAgreementUpdate memory _rcau ) private view returns (bytes32 ) {
414
+ function _hashRCAU (RecurringCollectionAgreementUpdate memory _rcau ) private view returns (bytes32 ) {
415
415
return
416
416
_hashTypedDataV4 (
417
417
keccak256 (
0 commit comments