File tree 3 files changed +2
-3
lines changed
packages/subgraph-service/contracts
3 files changed +2
-3
lines changed Original file line number Diff line number Diff line change 4
4
* Update Arbitration Charter to support disputing Indexing Fees. DONE: ~~ Support ` DisputeManager ` ~~
5
5
* Make ` agreementId ` unique globally so that we don't need the full tuple (` payer ` +` indexer ` +` agreementId ` ) as key?
6
6
* Rename ` Decoder.sol ` - Maybe turn it into a library instead?
7
- * Reverse name of ` SubgraphServiceIndexingAgreementAlreadyAllocated ` ?
8
7
* Support indexing agreement upgadeability, so that there is a mechanism to adjust the rates without having to cancel and start over.
9
8
* Support for agreements that end up in ` RecurringCollectorCollectionTooLate ` or ways to avoid getting to that state.
10
9
* Should we deal with zero entities declared as a special case?
Original file line number Diff line number Diff line change @@ -761,7 +761,7 @@ contract SubgraphService is
761
761
762
762
require (
763
763
_isZeroIndexingAgreementKey (allocationToActiveAgreementKey[_allocationId]),
764
- SubgraphServiceIndexingAgreementAlreadyAllocated (_allocationId)
764
+ SubgraphServiceAllocationAlreadyHasIndexingAgreement (_allocationId)
765
765
);
766
766
allocationToActiveAgreementKey[_allocationId] = key;
767
767
Original file line number Diff line number Diff line change @@ -402,7 +402,7 @@ interface ISubgraphService is IDataServiceFees {
402
402
* @notice Thrown when an allocation already has an active agreement
403
403
* @param allocationId The allocation ID
404
404
*/
405
- error SubgraphServiceIndexingAgreementAlreadyAllocated (address allocationId );
405
+ error SubgraphServiceAllocationAlreadyHasIndexingAgreement (address allocationId );
406
406
407
407
/**
408
408
* @notice Thrown when caller can not cancel an agreement
You can’t perform that action at this time.
0 commit comments